summaryrefslogtreecommitdiffstats
path: root/modules/lua
diff options
context:
space:
mode:
authorBrian McCallister <brianm@apache.org>2009-03-01 02:46:17 +0100
committerBrian McCallister <brianm@apache.org>2009-03-01 02:46:17 +0100
commit0b298347d50050a3f802499809a419fd2a20b088 (patch)
tree72c354b2e16a394b7ca88166ed10946d3b06274f /modules/lua
parentchange syntax for getting document root in mod_lua to r.document_root, sugges... (diff)
downloadapache2-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.c1
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;