You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by je...@apache.org on 2006/12/29 07:42:09 UTC

svn commit: r490925 - /httpd/test/trunk/flood/flood_round_robin.c

Author: jerenkrantz
Date: Thu Dec 28 22:42:08 2006
New Revision: 490925

URL: http://svn.apache.org/viewvc?view=rev&rev=490925
Log:
Always initialize ->method_string.

* flood_round_robin.c
  (parse_xml_url_info): If we don't have a method attribute, set ->method_string
  to GET.

Modified:
    httpd/test/trunk/flood/flood_round_robin.c

Modified: httpd/test/trunk/flood/flood_round_robin.c
URL: http://svn.apache.org/viewvc/httpd/test/trunk/flood/flood_round_robin.c?view=diff&rev=490925&r1=490924&r2=490925
==============================================================================
--- httpd/test/trunk/flood/flood_round_robin.c (original)
+++ httpd/test/trunk/flood/flood_round_robin.c Thu Dec 28 22:42:08 2006
@@ -559,6 +559,7 @@
     else
     {
         url->method = GET;
+        url->method_string = "GET";
         url->payload = NULL;
         url->contenttype = NULL;
     }