You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2014/03/18 14:40:04 UTC

svn commit: r1578882 - in /httpd/httpd/trunk: docs/log-message-tags/next-number modules/lua/lua_vmprep.c

Author: humbedooh
Date: Tue Mar 18 13:40:03 2014
New Revision: 1578882

URL: http://svn.apache.org/r1578882
Log:
fix message number

Modified:
    httpd/httpd/trunk/docs/log-message-tags/next-number
    httpd/httpd/trunk/modules/lua/lua_vmprep.c

Modified: httpd/httpd/trunk/docs/log-message-tags/next-number
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/log-message-tags/next-number?rev=1578882&r1=1578881&r2=1578882&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/log-message-tags/next-number (original)
+++ httpd/httpd/trunk/docs/log-message-tags/next-number Tue Mar 18 13:40:03 2014
@@ -1 +1 @@
-2613
+2614

Modified: httpd/httpd/trunk/modules/lua/lua_vmprep.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/lua/lua_vmprep.c?rev=1578882&r1=1578881&r2=1578882&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/lua/lua_vmprep.c (original)
+++ httpd/httpd/trunk/modules/lua/lua_vmprep.c Tue Mar 18 13:40:03 2014
@@ -371,7 +371,7 @@ static apr_status_t vm_construct(lua_Sta
             return APR_EBADF;
         }
         if ( lua_pcall(L, 0, LUA_MULTRET, 0) == LUA_ERRRUN ) {
-            ap_log_perror(APLOG_MARK, APLOG_ERR, 0, lifecycle_pool, APLOGNO(01482)
+            ap_log_perror(APLOG_MARK, APLOG_ERR, 0, lifecycle_pool, APLOGNO(02613)
                           "Error loading %s: %s", spec->file,
                             lua_tostring(L, -1));
             return APR_EBADF;