diff options
Diffstat (limited to 'os')
-rw-r--r-- | os/bs2000/os.c | 4 | ||||
-rw-r--r-- | os/unix/unixd.c | 4 |
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); } |