summaryrefslogtreecommitdiff
path: root/os
diff options
context:
space:
mode:
authorChristophe Jaillet <jailletc36@apache.org>2014-07-20 09:32:58 +0000
committerChristophe Jaillet <jailletc36@apache.org>2014-07-20 09:32:58 +0000
commit56d0c257250cb6806b2b348c66d560c988a09ffd (patch)
tree1cd4b9857bd6539263e14b2460014fa7a8157b1c /os
parentcb675cd07641bb8c9ae6e83ed9678565cb647581 (diff)
downloadhttpd-56d0c257250cb6806b2b348c66d560c988a09ffd.tar.gz
Add missing APLOGNO.
Refactor some lines to keep APLOGNO on the same line as ap_log_error, when applicable. Split lines longer than 80. Improve alignment. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1612068 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os')
-rw-r--r--os/bs2000/os.c4
-rw-r--r--os/unix/unixd.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/os/bs2000/os.c b/os/bs2000/os.c
index 9dc776dfcc..199706fefc 100644
--- a/os/bs2000/os.c
+++ b/os/bs2000/os.c
@@ -114,8 +114,8 @@ pid_t os_fork(const char *user)
pid = ufork(username);
if (pid == -1 && errno == EPERM) {
- ap_log_error(APLOG_MARK, APLOG_EMERG, errno,
- ap_server_conf, APLOGNO(02171) "ufork: Possible mis-configuration "
+ ap_log_error(APLOG_MARK, APLOG_EMERG, errno, ap_server_conf,
+ APLOGNO(02171) "ufork: Possible mis-configuration "
"for user %s - Aborting.", user);
exit(1);
}
diff --git a/os/unix/unixd.c b/os/unix/unixd.c
index c10ea9d699..bcb97a57db 100644
--- a/os/unix/unixd.c
+++ b/os/unix/unixd.c
@@ -522,8 +522,8 @@ pid_t os_fork(const char *user)
pid = ufork(username);
if (pid == -1 && errno == EPERM) {
- ap_log_error(APLOG_MARK, APLOG_EMERG, errno,
- ap_server_conf, APLOGNO(02181) "ufork: Possible mis-configuration "
+ ap_log_error(APLOG_MARK, APLOG_EMERG, errno, ap_server_conf,
+ APLOGNO(02181) "ufork: Possible mis-configuration "
"for user %s - Aborting.", user);
exit(1);
}