From: wessels <> Date: Mon, 7 Oct 1996 21:06:06 +0000 (+0000) Subject: compiler warnings X-Git-Tag: SQUID_3_0_PRE1~5713 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8d5be8a106936ffe1fd3bd15b606df5e2e56ed4c;p=thirdparty%2Fsquid.git compiler warnings --- diff --git a/src/cachemgr.cc b/src/cachemgr.cc index b005ed03fa..341319d164 100644 --- a/src/cachemgr.cc +++ b/src/cachemgr.cc @@ -1,6 +1,6 @@ /* - * $Id: cachemgr.cc,v 1.32 1996/10/07 15:04:46 wessels Exp $ + * $Id: cachemgr.cc,v 1.33 1996/10/07 15:06:06 wessels Exp $ * * DEBUG: Section 0 CGI Cache Manager * AUTHOR: Harvest Derived @@ -618,7 +618,7 @@ main(int argc, char *argv[]) plustospace(s); unescape_url(s); - if (v = strchr(s, '=')) + if ((v = strchr(s, '=')) != NULL) *v++ = '\0'; else v = s;