From: Jim Jagielski Date: Tue, 9 Oct 2007 13:17:52 +0000 (+0000) Subject: Merge r517233 from trunk: X-Git-Tag: 2.2.7~325 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b14273c062e7a0cdc3b8685aadc938a451ceb89;p=thirdparty%2Fapache%2Fhttpd.git Merge r517233 from trunk: * server/mpm_common.c (dummy_connection): Use "OPTIONS *" for request on dummy connection. PR: 41796 Submitted by: jorton Reviewed by: jim git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@583152 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm_common.c b/server/mpm_common.c index f80637330f3..a95b2312139 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -699,7 +699,7 @@ static apr_status_t dummy_connection(ap_pod_t *pod) * adminstrators can track down the cause of the odd-looking * requests in their logs. */ - srequest = apr_pstrcat(p, "GET / HTTP/1.0\r\nUser-Agent: ", + srequest = apr_pstrcat(p, "OPTIONS * HTTP/1.0\r\nUser-Agent: ", ap_get_server_banner(), " (internal dummy connection)\r\n\r\n", NULL);