summaryrefslogtreecommitdiff
path: root/modules/examples
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2011-12-07 21:59:16 +0000
committerStefan Fritsch <sf@apache.org>2011-12-07 21:59:16 +0000
commit0ecd2fe5e5a5bb76a6d7786f2147c2fd963272c5 (patch)
treee8df9191fd3500b0deb2457d6e3a5d720ddffafd /modules/examples
parent408b6818e66818ba2b34704b9b7347c253f39279 (diff)
downloadhttpd-0ecd2fe5e5a5bb76a6d7786f2147c2fd963272c5.tar.gz
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/examples')
-rw-r--r--modules/examples/mod_example_ipc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/examples/mod_example_ipc.c b/modules/examples/mod_example_ipc.c
index 76887649ba..27c87443de 100644
--- a/modules/examples/mod_example_ipc.c
+++ b/modules/examples/mod_example_ipc.c
@@ -279,8 +279,8 @@ static int exipc_handler(request_rec *r)
* and returned BUSY. So, bump the time and try again
*/
timecamped += CAMPOUT;
- ap_log_error(APLOG_MARK, APLOG_NOERRNO | APLOG_NOTICE,
- 0, r->server, "Child %ld camping out on mutex for %" APR_INT64_T_FMT
+ ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, r->server,
+ "Child %ld camping out on mutex for %" APR_INT64_T_FMT
" microseconds",
(long int) getpid(), timecamped);
} /* Lock acquisition loop */