diff options
author | Stefan Fritsch <sf@apache.org> | 2012-09-10 18:06:48 +0000 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2012-09-10 18:06:48 +0000 |
commit | 533878b7c7b490722bbdfcc5831cb8b1af4872b9 (patch) | |
tree | 40042744cd8799476486d18865e94a715f19bb3a /modules/lua/mod_lua.c | |
parent | 7afd66d30e9118263cf2b980b31110017135378f (diff) | |
download | httpd-533878b7c7b490722bbdfcc5831cb8b1af4872b9.tar.gz |
Replace duplicate log msg numbers
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1383013 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/lua/mod_lua.c')
-rw-r--r-- | modules/lua/mod_lua.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/lua/mod_lua.c b/modules/lua/mod_lua.c index e75ca32ddf..22620b5da9 100644 --- a/modules/lua/mod_lua.c +++ b/modules/lua/mod_lua.c @@ -336,7 +336,7 @@ static apr_status_t lua_setup_filter_ctx(ap_filter_t* f, request_rec* r, lua_fil } if (!L) { - ap_log_rerror(APLOG_MARK, APLOG_CRIT, 0, r, APLOGNO(01477) + ap_log_rerror(APLOG_MARK, APLOG_CRIT, 0, r, APLOGNO(02328) "lua: Failed to obtain lua interpreter for %s %s", hook_spec->function_name, hook_spec->file_name); ap_lua_release_state(L, spec, r); @@ -345,7 +345,7 @@ static apr_status_t lua_setup_filter_ctx(ap_filter_t* f, request_rec* r, lua_fil if (hook_spec->function_name != NULL) { lua_getglobal(L, hook_spec->function_name); if (!lua_isfunction(L, -1)) { - ap_log_rerror(APLOG_MARK, APLOG_CRIT, 0, r, APLOGNO(01478) + ap_log_rerror(APLOG_MARK, APLOG_CRIT, 0, r, APLOGNO(02329) "lua: Unable to find function %s in %s", hook_spec->function_name, hook_spec->file_name); @@ -711,7 +711,7 @@ static int lua_map_handler(request_rec *r) L = ap_lua_get_lua_state(pool, spec, r); if (!L) { - ap_log_rerror(APLOG_MARK, APLOG_CRIT, 0, r, APLOGNO(01477) + ap_log_rerror(APLOG_MARK, APLOG_CRIT, 0, r, APLOGNO(02330) "lua: Failed to obtain lua interpreter for %s %s", function_name, filename); ap_lua_release_state(L, spec, r); @@ -721,7 +721,7 @@ static int lua_map_handler(request_rec *r) if (function_name != NULL) { lua_getglobal(L, function_name); if (!lua_isfunction(L, -1)) { - ap_log_rerror(APLOG_MARK, APLOG_CRIT, 0, r, APLOGNO(01478) + ap_log_rerror(APLOG_MARK, APLOG_CRIT, 0, r, APLOGNO(02331) "lua: Unable to find function %s in %s", function_name, filename); |