1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Add missing comma in some 'apr_apr_psprintf()' call if APR_HAS_THREADS is not defined

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1882060 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Christophe Jaillet
2020-09-27 09:00:35 +00:00
parent 242d341756
commit 03b458e0e2

View File

@@ -1652,7 +1652,7 @@ static const char *register_lua_scope(cmd_parms *cmd,
return apr_psprintf(cmd->pool, return apr_psprintf(cmd->pool,
"Scope type of '%s' cannot be used because this " "Scope type of '%s' cannot be used because this "
"server does not have threading support " "server does not have threading support "
"(APR_HAS_THREADS)" "(APR_HAS_THREADS)",
scope); scope);
#endif #endif
cfg->vm_scope = AP_LUA_SCOPE_THREAD; cfg->vm_scope = AP_LUA_SCOPE_THREAD;
@@ -1663,7 +1663,7 @@ static const char *register_lua_scope(cmd_parms *cmd,
return apr_psprintf(cmd->pool, return apr_psprintf(cmd->pool,
"Scope type of '%s' cannot be used because this " "Scope type of '%s' cannot be used because this "
"server does not have threading support " "server does not have threading support "
"(APR_HAS_THREADS)" "(APR_HAS_THREADS)",
scope); scope);
#endif #endif
cfg->vm_scope = AP_LUA_SCOPE_SERVER; cfg->vm_scope = AP_LUA_SCOPE_SERVER;