]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
allow all FTP requests, not just GET
authorwessels <>
Tue, 19 Nov 1996 01:25:06 +0000 (01:25 +0000)
committerwessels <>
Tue, 19 Nov 1996 01:25:06 +0000 (01:25 +0000)
src/url.cc

index 8a2cd6aeb3b818df7f1a2d4ca13dc4227a24386c..218a2511dc016332b640fae6bc82f80922503976 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: url.cc,v 1.43 1996/11/15 17:26:23 wessels Exp $
+ * $Id: url.cc,v 1.44 1996/11/18 18:25:06 wessels Exp $
  *
  * DEBUG: section 23    URL Parsing
  * AUTHOR: Duane Wessels
@@ -321,9 +321,9 @@ urlCheckRequest(const request_t * r)
     switch (r->protocol) {
     case PROTO_HTTP:
     case PROTO_CACHEOBJ:
+    case PROTO_FTP:
        rc = 1;
        break;
-    case PROTO_FTP:
     case PROTO_GOPHER:
     case PROTO_WAIS:
        if (r->method == METHOD_GET)