From: Aaron Bannert Date: Tue, 21 May 2002 15:40:51 +0000 (+0000) Subject: Omit the second linefeed after "Syntax OK" X-Git-Tag: 2.0.37~317 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b5db596b6fea797cd260c0faff73f9ce74139e55;p=apache Omit the second linefeed after "Syntax OK" Submitted by: Joe Orton git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95206 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/main.c b/server/main.c index 439a757714..880b7fd57e 100644 --- a/server/main.c +++ b/server/main.c @@ -561,8 +561,7 @@ int main(int argc, const char * const argv[]) ap_fini_vhost_config(pconf, server_conf); apr_sort_hooks(); if (configtestonly) { - ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL, - "Syntax OK\n"); + ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL, "Syntax OK"); destroy_and_exit_process(process, 0); }