summaryrefslogtreecommitdiffstats
path: root/modules/debugging
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2011-12-07 22:59:16 +0100
committerStefan Fritsch <sf@apache.org>2011-12-07 22:59:16 +0100
commit0ecd2fe5e5a5bb76a6d7786f2147c2fd963272c5 (patch)
treee8df9191fd3500b0deb2457d6e3a5d720ddffafd /modules/debugging
parentRemove unused variable (diff)
downloadapache2-0ecd2fe5e5a5bb76a6d7786f2147c2fd963272c5.tar.xz
apache2-0ecd2fe5e5a5bb76a6d7786f2147c2fd963272c5.zip
Remove usage of APLOG_NOERRNO. It has been a no-op since at least 2.0.x
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1211663 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/debugging')
-rw-r--r--modules/debugging/mod_dumpio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/debugging/mod_dumpio.c b/modules/debugging/mod_dumpio.c
index e15932db55..a56fa162c5 100644
--- a/modules/debugging/mod_dumpio.c
+++ b/modules/debugging/mod_dumpio.c
@@ -97,7 +97,7 @@ static void dumpit(ap_filter_t *f, apr_bucket *b, dumpio_conf_t *ptr)
* within ap_log_error, and introduce new vformatter %-escapes
* for escaping text, and for binary text (fixed len strings).
*/
- ap_log_cerror(APLOG_MARK | APLOG_NOERRNO, APLOG_TRACE7, 0, c,
+ ap_log_cerror(APLOG_MARK, APLOG_TRACE7, 0, c,
"mod_dumpio: %s (%s-%s): %.*s", f->frec->name,
(APR_BUCKET_IS_METADATA(b)) ? "metadata" : "data",
b->type->name, (int)logbytes, buf);