From: Bill Stoddard Date: Mon, 14 Jan 2002 14:39:51 +0000 (+0000) Subject: Log a more friendly message for server timeout. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=865f6f902c6390c407a113274830dcdf906c9906;p=thirdparty%2Fapache%2Fhttpd.git Log a more friendly message for server timeout. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@92850 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/main/http_protocol.c b/src/main/http_protocol.c index 26240558aeb..c5a0c22ffa3 100644 --- a/src/main/http_protocol.c +++ b/src/main/http_protocol.c @@ -2906,7 +2906,7 @@ API_EXPORT(void) ap_send_error_response(request_rec *r, int recursive_error) "This indicates a configuration error.

\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
",