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");
}