From: Martin Kraemer Date: Mon, 5 Jan 2004 10:34:07 +0000 (+0000) Subject: PR: X-Git-Tag: pre_ajp_proxy~866 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ac8b37fd20c94fbc6d7df4067a4fb9844963f612;p=apache PR: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102187 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/main.c b/server/main.c index 4d755f31fa..035f45212e 100644 --- a/server/main.c +++ b/server/main.c @@ -645,13 +645,13 @@ int main(int argc, const char * const argv[]) if ( ap_run_open_logs(pconf, plog, ptemp, server_conf) != OK) { ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR, - 0, NULL, "Unable to open logs\n"); + 0, NULL, "Unable to open logs"); destroy_and_exit_process(process, 1); } if ( ap_run_post_config(pconf, plog, ptemp, server_conf) != OK) { ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR, 0, - NULL, "Configuration Failed\n"); + NULL, "Configuration Failed"); destroy_and_exit_process(process, 1); } @@ -690,13 +690,13 @@ int main(int argc, const char * const argv[]) apr_pool_clear(plog); if (ap_run_open_logs(pconf, plog, ptemp, server_conf) != OK) { ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR, - 0, NULL, "Unable to open logs\n"); + 0, NULL, "Unable to open logs"); destroy_and_exit_process(process, 1); } if (ap_run_post_config(pconf, plog, ptemp, server_conf) != OK) { ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR, - 0, NULL, "Configuration Failed\n"); + 0, NULL, "Configuration Failed"); destroy_and_exit_process(process, 1); }