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:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user