From: wessels <> Date: Tue, 5 Oct 1999 01:10:52 +0000 (+0000) Subject: merge X-Git-Tag: SQUID_3_0_PRE1~2114 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=332cc562d951511cacb36c179b0c9c1460d0511a;p=thirdparty%2Fsquid.git merge --- diff --git a/src/dns_internal.cc b/src/dns_internal.cc index 30fa2fbfd5..fa4fa6401d 100644 --- a/src/dns_internal.cc +++ b/src/dns_internal.cc @@ -1,6 +1,6 @@ /* - * $Id: dns_internal.cc,v 1.16 1999/10/04 05:05:09 wessels Exp $ + * $Id: dns_internal.cc,v 1.17 1999/10/04 19:10:52 wessels Exp $ * * DEBUG: section 78 DNS lookups; interacts with lib/rfc1035.c * AUTHOR: Duane Wessels @@ -130,8 +130,8 @@ idnsParseResolvConf(void) idnsFreeNameservers(); while (fgets(buf, 512, fp)) { t = strtok(buf, w_space); - if (t == NULL) - continue;; + if (NULL == t) + continue; if (strcasecmp(t, "nameserver")) continue; t = strtok(NULL, w_space);