Use NULL instead of 0 for pointers.
strchr(3) will return NULL if the character does not appear in the string. MFC after: 2 weeks.
This commit is contained in:
parent
1bed3a70f7
commit
889ed0c7e4
@ -68,7 +68,7 @@ netfinger(char *name)
|
||||
static struct addrinfo hint;
|
||||
|
||||
host = strrchr(name, '@');
|
||||
if (host == 0)
|
||||
if (host == NULL)
|
||||
return;
|
||||
*host++ = '\0';
|
||||
signal(SIGALRM, cleanup);
|
||||
@ -92,7 +92,7 @@ netfinger(char *name)
|
||||
else
|
||||
printf("[%s]\n", ai0->ai_canonname);
|
||||
|
||||
for (ai = ai0; ai != 0; ai = ai->ai_next) {
|
||||
for (ai = ai0; ai != NULL; ai = ai->ai_next) {
|
||||
if (multi)
|
||||
trying(ai);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user