You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2020/09/27 09:00:35 UTC

svn commit: r1882060 - /httpd/httpd/trunk/modules/lua/mod_lua.c

Author: jailletc36
Date: Sun Sep 27 09:00:35 2020
New Revision: 1882060

URL: http://svn.apache.org/viewvc?rev=1882060&view=rev
Log:
Add missing comma in some 'apr_apr_psprintf()' call if APR_HAS_THREADS is not defined

Modified:
    httpd/httpd/trunk/modules/lua/mod_lua.c

Modified: httpd/httpd/trunk/modules/lua/mod_lua.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/lua/mod_lua.c?rev=1882060&r1=1882059&r2=1882060&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/lua/mod_lua.c (original)
+++ httpd/httpd/trunk/modules/lua/mod_lua.c Sun Sep 27 09:00:35 2020
@@ -1652,7 +1652,7 @@ static const char *register_lua_scope(cm
         return apr_psprintf(cmd->pool,
                             "Scope type of '%s' cannot be used because this "
                             "server does not have threading support "
-                            "(APR_HAS_THREADS)" 
+                            "(APR_HAS_THREADS)",
                             scope);
 #endif
         cfg->vm_scope = AP_LUA_SCOPE_THREAD;
@@ -1663,7 +1663,7 @@ static const char *register_lua_scope(cm
         return apr_psprintf(cmd->pool,
                             "Scope type of '%s' cannot be used because this "
                             "server does not have threading support "
-                            "(APR_HAS_THREADS)" 
+                            "(APR_HAS_THREADS)",
                             scope);
 #endif
         cfg->vm_scope = AP_LUA_SCOPE_SERVER;