Return-Path: Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 23735 invoked by uid 500); 21 May 2002 13:34:05 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 23657 invoked from network); 21 May 2002 13:34:04 -0000 X-Authentication-Warning: radish.cambridge.redhat.com: jorton set sender to jorton@redhat.com using -f Date: Tue, 21 May 2002 14:34:05 +0100 From: Joe Orton To: dev@httpd.apache.org Subject: [PATCH] remove blank line from httpd -t Message-ID: <20020521143405.A22292@redhat.com> Mail-Followup-To: dev@httpd.apache.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N The "Syntax OK" message from httpd -t includes two linefeeds at the moment since log_error_core appends one too. Index: server/main.c =================================================================== RCS file: /home/cvspublic/httpd-2.0/server/main.c,v retrieving revision 1.128 diff -u -r1.128 main.c --- server/main.c 17 May 2002 11:11:37 -0000 1.128 +++ server/main.c 21 May 2002 13:29:17 -0000 @@ -562,7 +562,7 @@ apr_sort_hooks(); if (configtestonly) { ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL, - "Syntax OK\n"); + "Syntax OK"); destroy_and_exit_process(process, 0); }