diff options
author | Brian McCallister <brianm@apache.org> | 2009-03-01 02:46:17 +0100 |
---|---|---|
committer | Brian McCallister <brianm@apache.org> | 2009-03-01 02:46:17 +0100 |
commit | 0b298347d50050a3f802499809a419fd2a20b088 (patch) | |
tree | 72c354b2e16a394b7ca88166ed10946d3b06274f /modules/lua | |
parent | change syntax for getting document root in mod_lua to r.document_root, sugges... (diff) | |
download | apache2-0b298347d50050a3f802499809a419fd2a20b088.tar.xz apache2-0b298347d50050a3f802499809a419fd2a20b088.zip |
remove leftover debug statement
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@748949 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/lua')
-rw-r--r-- | modules/lua/lua_request.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/lua/lua_request.c b/modules/lua/lua_request.c index f97aedf9d4..4c96c49c44 100644 --- a/modules/lua/lua_request.c +++ b/modules/lua/lua_request.c @@ -450,7 +450,6 @@ static int req_newindex(lua_State *L) /* const char* key = luaL_checkstring(L, -2); */ request_rec *r = apl_check_request_rec(L, 1); key = luaL_checkstring(L, 2); - apl_rstack_dump(L, r, "req_newindex"); if (0 == apr_strnatcmp("status", key)) { int code = luaL_checkinteger(L, 3); r->status = code; |