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.


git-svn-id: https://svn.apache.org/repos/asf/httpd/test/trunk/flood@490925 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/flood_round_robin.c b/flood_round_robin.c
index e64c939..27a9274 100644
--- a/flood_round_robin.c
+++ b/flood_round_robin.c
@@ -559,6 +559,7 @@
     else
     {
         url->method = GET;
+        url->method_string = "GET";
         url->payload = NULL;
         url->contenttype = NULL;
     }