From 6d2eb13e049583e687fc5d1161e366be58a95f64 Mon Sep 17 00:00:00 2001 From: wessels <> Date: Sat, 29 Sep 2001 02:02:40 +0000 Subject: [PATCH] Bugzilla #241: assignment instead of equality in src/url.c:320 --- src/url.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.47.2