From: wessels <> Date: Sat, 29 Sep 2001 02:02:40 +0000 (+0000) Subject: Bugzilla #241: assignment instead of equality in src/url.c:320 X-Git-Tag: SQUID_3_0_PRE1~1387 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6d2eb13e049583e687fc5d1161e366be58a95f64;p=thirdparty%2Fsquid.git Bugzilla #241: assignment instead of equality in src/url.c:320 --- diff --git a/src/url.cc b/src/url.cc index d5645d4a17..a0a7d5c5e3 100644 --- a/src/url.cc +++ b/src/url.cc @@ -1,6 +1,6 @@ /* - * $Id: url.cc,v 1.130 2001/04/14 00:03:24 hno Exp $ + * $Id: url.cc,v 1.131 2001/09/28 20:02:40 wessels Exp $ * * DEBUG: section 23 URL Parsing * AUTHOR: Duane Wessels @@ -317,7 +317,7 @@ urlParse(method_t method, char *url) #ifdef HARDCODE_DENY_PORTS /* These ports are filtered in the default squid.conf, but * maybe someone wants them hardcoded... */ - if (port == 7 || port == 9 || port = 19) { + if (port == 7 || port == 9 || port == 19) { debug(23, 0) ("urlParse: Deny access to port %d\n", port); return NULL; }