]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Bugzilla #406: Fix for external_acl %PORT directive
authorhno <>
Wed, 21 Aug 2002 11:56:10 +0000 (11:56 +0000)
committerhno <>
Wed, 21 Aug 2002 11:56:10 +0000 (11:56 +0000)
src/external_acl.cc

index c5ebced7b1d044ecb59289b8e0601fabcf0ae067..a6c07c7c40067df66693171970657099312f12e9 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: external_acl.cc,v 1.5 2002/07/18 22:02:26 hno Exp $
+ * $Id: external_acl.cc,v 1.6 2002/08/21 05:56:10 hno Exp $
  *
  * DEBUG: section 82    External ACL
  * AUTHOR: Henrik Nordstrom, MARA Systems AB
@@ -515,6 +515,7 @@ makeExternalAclKey(aclCheck_t * ch, external_acl_data * acl_data)
        case EXT_ACL_PORT:
            snprintf(buf, sizeof(buf), "%d", request->port);
            str = buf;
+           break;
        case EXT_ACL_METHOD:
            str = RequestMethodStr[request->method];
            break;