]> granicus.if.org Git - apache/commitdiff
PR:
authorMartin Kraemer <martin@apache.org>
Mon, 5 Jan 2004 10:34:07 +0000 (10:34 +0000)
committerMartin Kraemer <martin@apache.org>
Mon, 5 Jan 2004 10:34:07 +0000 (10:34 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102187 13f79535-47bb-0310-9956-ffa450edef68

server/main.c

index 4d755f31fa4494e4043b361a83cc964173b79026..035f45212e09c2c65ab7e84d8b66418bc0fa8e66 100644 (file)
@@ -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);
         }