X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/5c01446c027960e00b33f623212de645475569aa..3fd1cca50eb98ccfd3d51fce839f5963ef997e80:/uip/aliasbr.c diff --git a/uip/aliasbr.c b/uip/aliasbr.c index 7e8cf29a..40687bbc 100644 --- a/uip/aliasbr.c +++ b/uip/aliasbr.c @@ -343,13 +343,13 @@ getalias (char *addrs) if (cp == NULL) cp = addrs; else if (*cp == 0) - return (cp = NULL); + return cp = NULL; /* Remove leading any space from the address. */ for (pp = cp; isspace ((unsigned char) *pp); pp++) continue; if (*pp == 0) - return (cp = NULL); + return cp = NULL; /* Find the end of the address. */ for (qp = pp; *qp != 0 && *qp != ','; qp++) continue;