diff options
author | Stefan Fritsch <sf@apache.org> | 2011-12-07 22:59:16 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2011-12-07 22:59:16 +0100 |
commit | 0ecd2fe5e5a5bb76a6d7786f2147c2fd963272c5 (patch) | |
tree | e8df9191fd3500b0deb2457d6e3a5d720ddffafd /modules/debugging | |
parent | Remove unused variable (diff) | |
download | apache2-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.c | 2 |
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); |