summaryrefslogtreecommitdiffstats
path: root/server/mpm_common.c
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2000-07-25 03:06:32 +0200
committerWilliam A. Rowe Jr <wrowe@apache.org>2000-07-25 03:06:32 +0200
commit847b20108cb710fe136cf435f68de79c67443202 (patch)
treee68592d559380b6be72554334ca3aecf9eba115c /server/mpm_common.c
parent Missing apr_strings.h - hope this wasn't destined for some global header. (diff)
downloadapache2-847b20108cb710fe136cf435f68de79c67443202.tar.xz
apache2-847b20108cb710fe136cf435f68de79c67443202.zip
Add APR_EOL_STR for a platform specific text delimiter, provided by
apr.h (defined in apr.h.in and apr.hw). This is needed -only- in APR created files (true raw files) such as logs. It is not required in any splat to screen (stderr/stdout) formatting, nor any html markup. Some other modules slipped through in the prior apr_strings.h commit. Sorry 'bout that. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85878 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm_common.c')
-rw-r--r--server/mpm_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/mpm_common.c b/server/mpm_common.c
index f99d6d7aee..2e1df1da9d 100644
--- a/server/mpm_common.c
+++ b/server/mpm_common.c
@@ -232,7 +232,7 @@ void ap_process_child_status(ap_proc_t *pid, ap_wait_t status)
if ((WIFEXITED(status)) &&
WEXITSTATUS(status) == APEXIT_CHILDFATAL) {
ap_log_error(APLOG_MARK, APLOG_ALERT|APLOG_NOERRNO, 0, ap_server_conf,
- "Child %ld returned a Fatal error... \n"
+ "Child %ld returned a Fatal error..." APR_EOL_STR
"Apache is exiting!",
(long)pid->pid);
exit(APEXIT_CHILDFATAL);