summaryrefslogtreecommitdiffstats
path: root/modules/mappers/mod_speling.c
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2002-05-17 13:24:17 +0200
committerJeff Trawick <trawick@apache.org>2002-05-17 13:24:17 +0200
commit50bac91072b1a4f6eb894f11d4272fed985f3912 (patch)
tree0b7d9082a4d8b39dbad273be610f29a9892222c5 /modules/mappers/mod_speling.c
parentstop using APLOG_NOERRNO in calls to ap_log_?error() (diff)
downloadapache2-50bac91072b1a4f6eb894f11d4272fed985f3912.tar.xz
apache2-50bac91072b1a4f6eb894f11d4272fed985f3912.zip
stop using APLOG_NOERRNO in calls to ap_log_[pr]error()
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95150 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/mappers/mod_speling.c')
-rw-r--r--modules/mappers/mod_speling.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mappers/mod_speling.c b/modules/mappers/mod_speling.c
index 9377c3ffc9..5244eed8a2 100644
--- a/modules/mappers/mod_speling.c
+++ b/modules/mappers/mod_speling.c
@@ -431,7 +431,7 @@ static int check_speling(request_rec *r)
apr_table_setn(r->headers_out, "Location",
ap_construct_url(r->pool, nuri, r));
- ap_log_rerror(APLOG_MARK, APLOG_NOERRNO | APLOG_INFO, APR_SUCCESS,
+ ap_log_rerror(APLOG_MARK, APLOG_INFO, APR_SUCCESS,
r,
ref ? "Fixed spelling: %s to %s from %s"
: "Fixed spelling: %s to %s",
@@ -540,7 +540,7 @@ static int check_speling(request_rec *r)
apr_pool_destroy(sub_pool);
- ap_log_rerror(APLOG_MARK, APLOG_NOERRNO | APLOG_INFO, 0, r,
+ ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r,
ref ? "Spelling fix: %s: %d candidates from %s"
: "Spelling fix: %s: %d candidates",
r->uri, candidates->nelts, ref);