You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2007/10/09 15:17:53 UTC

svn commit: r583152 - /httpd/httpd/branches/2.2.x/server/mpm_common.c

Author: jim
Date: Tue Oct  9 06:17:52 2007
New Revision: 583152

URL: http://svn.apache.org/viewvc?rev=583152&view=rev
Log:
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

Modified:
    httpd/httpd/branches/2.2.x/server/mpm_common.c

Modified: httpd/httpd/branches/2.2.x/server/mpm_common.c
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/server/mpm_common.c?rev=583152&r1=583151&r2=583152&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/server/mpm_common.c (original)
+++ httpd/httpd/branches/2.2.x/server/mpm_common.c Tue Oct  9 06:17:52 2007
@@ -699,7 +699,7 @@
      * 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);