From: Brian McCallister Date: Sun, 1 Mar 2009 01:46:17 +0000 (+0000) Subject: remove leftover debug statement X-Git-Tag: 2.3.2~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0b298347d50050a3f802499809a419fd2a20b088;p=thirdparty%2Fapache%2Fhttpd.git remove leftover debug statement git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@748949 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/lua/lua_request.c b/modules/lua/lua_request.c index f97aedf9d42..4c96c49c44f 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;