Return-Path: Delivered-To: apache-cvs-archive@hyperreal.org Received: (qmail 2198 invoked by uid 6000); 12 Oct 1998 17:15:30 -0000 Received: (qmail 2182 invoked by alias); 12 Oct 1998 17:15:27 -0000 Delivered-To: apache-1.3-cvs@hyperreal.org Received: (qmail 2180 invoked by uid 143); 12 Oct 1998 17:15:27 -0000 Date: 12 Oct 1998 17:15:27 -0000 Message-ID: <19981012171527.2179.qmail@hyperreal.org> From: dgaudet@hyperreal.org To: apache-1.3-cvs@hyperreal.org Subject: cvs commit: apache-1.3/src/main http_main.c Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org dgaudet 98/10/12 10:15:26 Modified: src/main http_main.c Log: correct inconsistency in error message format Revision Changes Path 1.400 +2 -2 apache-1.3/src/main/http_main.c Index: http_main.c =================================================================== RCS file: /export/home/cvs/apache-1.3/src/main/http_main.c,v retrieving revision 1.399 retrieving revision 1.400 diff -u -r1.399 -r1.400 --- http_main.c 1998/10/06 15:41:44 1.399 +++ http_main.c 1998/10/12 17:15:25 1.400 @@ -1044,14 +1044,14 @@ if (sig == SIGPIPE) { ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO, current_conn->server, - "(client %s) stopped connection before %s completed", + "[client %s] stopped connection before %s completed", current_conn->remote_ip, timeout_name ? timeout_name : "request"); } else { ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO, current_conn->server, - "(client %s) %s timed out", + "[client %s] %s timed out", current_conn->remote_ip, timeout_name ? timeout_name : "request"); }