diff options
author | Rainer Jung <rjung@apache.org> | 2016-01-19 01:03:18 +0100 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2016-01-19 01:03:18 +0100 |
commit | 44ce30494ebedf4b08485cbd38a893d1635ee4c2 (patch) | |
tree | 0e39bf10dda446cb58b13a1ddf2b10eb0da1602e /modules/core | |
parent | Leverage the OPTIONS code for HEAD as well... (diff) | |
download | apache2-44ce30494ebedf4b08485cbd38a893d1635ee4c2.tar.xz apache2-44ce30494ebedf4b08485cbd38a893d1635ee4c2.zip |
Added many log numbers to log statements that
had none.
Handled all files in modules/.
I used the coccinelle script provided by Stefan.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1725392 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/core')
-rw-r--r-- | modules/core/mod_macro.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/mod_macro.c b/modules/core/mod_macro.c index ec484ac966..4cd1d41256 100644 --- a/modules/core/mod_macro.c +++ b/modules/core/mod_macro.c @@ -115,7 +115,7 @@ static void warn_if_non_blank(const char * what, if (*p == '#') break; if (*p != ' ' && *p != '\t') { - ap_log_error(APLOG_MARK, APLOG_WARNING, 0, NULL, + ap_log_error(APLOG_MARK, APLOG_WARNING, 0, NULL, APLOGNO(02989) "%s on line %d of %s: %s", what, cfg->line_number, cfg->name, ptr); break; |