]> sjero.net Git - wget/commitdiff
[svn] Docfix.
authorhniksic <devnull@localhost>
Sat, 29 Nov 2003 22:19:46 +0000 (14:19 -0800)
committerhniksic <devnull@localhost>
Sat, 29 Nov 2003 22:19:46 +0000 (14:19 -0800)
src/http.c

index 71e2ba388124e31c3559aae2290538e89549edf3..7087d71f5150e7d84f7a0ad263272ab9f31cbf80 100644 (file)
@@ -564,7 +564,7 @@ response_status (const struct response *resp, char **message)
 
   if (!resp->headers)
     {
-      /* For a HTTP/0.9 response, always assume 200 response. */
+      /* For a HTTP/0.9 response, assume status 200. */
       if (message)
        *message = xstrdup (_("No headers, assuming HTTP/0.9"));
       return 200;
@@ -581,8 +581,8 @@ response_status (const struct response *resp, char **message)
     return -1;
   p += 4;
 
-  /* "/x.x" (optional because some Gnutella servers have been reported
-     as not sending the "/x.x" part.  */
+  /* Match the HTTP version.  This is optional because Gnutella
+     servers have been reported to not specify HTTP version.  */
   if (p < end && *p == '/')
     {
       ++p;