diff options
Diffstat (limited to 'resolv')
-rw-r--r-- | resolv/gethnamaddr.c | 8 | ||||
-rw-r--r-- | resolv/nsap_addr.c | 2 | ||||
-rw-r--r-- | resolv/res_debug.c | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/resolv/gethnamaddr.c b/resolv/gethnamaddr.c index 16d7509f23..9a8efd66d3 100644 --- a/resolv/gethnamaddr.c +++ b/resolv/gethnamaddr.c @@ -815,7 +815,7 @@ _gethtent() cp++; host.h_name = cp; q = host.h_aliases = host_aliases; - if (cp = strpbrk(cp, " \t")) + if ((cp = strpbrk(cp, " \t"))) *cp++ = '\0'; while (cp && *cp) { if (*cp == ' ' || *cp == '\t') { @@ -824,7 +824,7 @@ _gethtent() } if (q < &host_aliases[MAXALIASES - 1]) *q++ = cp; - if (cp = strpbrk(cp, " \t")) + if ((cp = strpbrk(cp, " \t"))) *cp++ = '\0'; } *q = NULL; @@ -856,7 +856,7 @@ _gethtbyname2(name, af) register char **cp; _sethtent(0); - while (p = _gethtent()) { + while ((p = _gethtent())) { if (p->h_addrtype != af) continue; if (strcasecmp(p->h_name, name) == 0) @@ -878,7 +878,7 @@ _gethtbyaddr(addr, len, af) register struct hostent *p; _sethtent(0); - while (p = _gethtent()) + while ((p = _gethtent())) if (p->h_addrtype == af && !bcmp(p->h_addr, addr, len)) break; _endhtent(); diff --git a/resolv/nsap_addr.c b/resolv/nsap_addr.c index 5f41a736d6..5157c37c14 100644 --- a/resolv/nsap_addr.c +++ b/resolv/nsap_addr.c @@ -63,7 +63,7 @@ inet_nsap_addr(ascii, binary, maxlen) c = toupper(c); if (isxdigit(c)) { nib = xtob(c); - if (c = *ascii++) { + if ((c = *ascii++)) { c = toupper(c); if (isxdigit(c)) { *binary++ = (nib << 4) | xtob(c); diff --git a/resolv/res_debug.c b/resolv/res_debug.c index 3afe8c23a8..92b8fa1d1a 100644 --- a/resolv/res_debug.c +++ b/resolv/res_debug.c @@ -203,7 +203,7 @@ do_rrset(msg, len, cp, cnt, pflag, file, hs) * Print answer records. */ sflag = (_res.pfcode & pflag); - if (n = ntohs(cnt)) { + if ((n = ntohs(cnt))) { if ((!_res.pfcode) || ((sflag) && (_res.pfcode & RES_PRF_HEAD1))) fprintf(file, hs); @@ -337,7 +337,7 @@ __fp_nquery(msg, len, file) /* * Print question records. */ - if (n = ntohs(hp->qdcount)) { + if ((n = ntohs(hp->qdcount))) { if ((!_res.pfcode) || (_res.pfcode & RES_PRF_QUES)) fprintf(file, ";; QUESTIONS:\n"); while (--n >= 0) { @@ -647,7 +647,7 @@ __p_rr(cp, msg, file) cp2 = cp1 + dlen; while (cp < cp2) { putc('"', file); - if (n = (unsigned char) *cp++) { + if ((n = (unsigned char) *cp++)) { for (c = n; c > 0 && cp < cp2; c--) { if (strchr("\n\"\\", *cp)) (void) putc('\\', file); |