stoddard 02/01/14 06:39:51
Modified: src/main http_protocol.c
Log:
Log a more friendly message for server timeout.
Revision Changes Path
1.306 +1 -1 apache-1.3/src/main/http_protocol.c
Index: http_protocol.c
===================================================================
RCS file: /home/cvs/apache-1.3/src/main/http_protocol.c,v
retrieving revision 1.305
retrieving revision 1.306
diff -u -r1.305 -r1.306
--- http_protocol.c 8 Jan 2002 16:26:18 -0000 1.305
+++ http_protocol.c 14 Jan 2002 14:39:51 -0000 1.306
@@ -2906,7 +2906,7 @@
"This indicates a configuration error.<P>\n", NULL);
break;
case HTTP_REQUEST_TIME_OUT:
- ap_rputs("I'm tired of waiting for your request.\n", r);
+ ap_rputs("Server timeout waiting for the HTTP request from the client.\n", r);
break;
case HTTP_GONE:
ap_rvputs(r, "The requested resource<BR>",
|