From 56d0c257250cb6806b2b348c66d560c988a09ffd Mon Sep 17 00:00:00 2001 From: Christophe Jaillet Date: Sun, 20 Jul 2014 09:32:58 +0000 Subject: 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 --- os/bs2000/os.c | 4 ++-- os/unix/unixd.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'os') 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); } -- cgit v1.2.1