From ac8b37fd20c94fbc6d7df4067a4fb9844963f612 Mon Sep 17 00:00:00 2001 From: Martin Kraemer Date: Mon, 5 Jan 2004 10:34:07 +0000 Subject: [PATCH] PR: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102187 13f79535-47bb-0310-9956-ffa450edef68 --- server/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server/main.c b/server/main.c index 4d755f31fa4..035f45212e0 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); } -- 2.47.3