Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 47733 invoked from network); 21 Dec 2008 22:41:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 Dec 2008 22:41:07 -0000 Received: (qmail 66245 invoked by uid 500); 21 Dec 2008 22:41:06 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 66171 invoked by uid 500); 21 Dec 2008 22:41:06 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 66162 invoked by uid 99); 21 Dec 2008 22:41:06 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Dec 2008 14:41:06 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Dec 2008 22:41:04 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E1A25238889B; Sun, 21 Dec 2008 14:40:43 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r728540 - in /httpd/httpd/trunk/modules/lua: lua_request.c mod_lua.h Date: Sun, 21 Dec 2008 22:40:43 -0000 To: cvs@httpd.apache.org From: pquerna@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081221224043.E1A25238889B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: pquerna Date: Sun Dec 21 14:40:43 2008 New Revision: 728540 URL: http://svn.apache.org/viewvc?rev=728540&view=rev Log: Rename rstack_dump to apl_rstack_dump. Modified: httpd/httpd/trunk/modules/lua/lua_request.c httpd/httpd/trunk/modules/lua/mod_lua.h Modified: httpd/httpd/trunk/modules/lua/lua_request.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/lua/lua_request.c?rev=728540&r1=728539&r2=728540&view=diff ============================================================================== --- httpd/httpd/trunk/modules/lua/lua_request.c (original) +++ httpd/httpd/trunk/modules/lua/lua_request.c Sun Dec 21 14:40:43 2008 @@ -22,7 +22,7 @@ typedef char *(*req_field_string_f) (request_rec * r); typedef int (*req_field_int_f) (request_rec * r); -void rstack_dump(lua_State *L, request_rec *r, const char *msg) +void apl_rstack_dump(lua_State *L, request_rec *r, const char *msg) { ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r, "Lua Stack Dump: [%s]", msg); @@ -427,9 +427,9 @@ /* request_rec* r = lua_touserdata(L, lua_upvalueindex(1)); */ /* const char* key = luaL_checkstring(L, -2); */ request_rec *r = apl_check_request_rec(L, 1); - rstack_dump(L, r, "req_newindex"); + apl_rstack_dump(L, r, "req_newindex"); const char *key = luaL_checkstring(L, 2); - rstack_dump(L, r, "req_newindex"); + apl_rstack_dump(L, r, "req_newindex"); if (0 == apr_strnatcmp("status", key)) { int code = luaL_checkinteger(L, 3); r->status = code; Modified: httpd/httpd/trunk/modules/lua/mod_lua.h URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/lua/mod_lua.h?rev=728540&r1=728539&r2=728540&view=diff ============================================================================== --- httpd/httpd/trunk/modules/lua/mod_lua.h (original) +++ httpd/httpd/trunk/modules/lua/mod_lua.h Sun Dec 21 14:40:43 2008 @@ -57,7 +57,7 @@ #define lua_unboxpointer(L,i) (*(void **)(lua_touserdata(L, i))) #endif -void rstack_dump(lua_State *L, request_rec *r, const char *msg); +void apl_rstack_dump(lua_State *L, request_rec *r, const char *msg); typedef struct {