Fixed a misspelling of '\0' as NULL.

This commit is contained in:
Bruce Evans 2004-03-11 10:22:25 +00:00
parent 00925a8e84
commit 83e6e8406c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=126840

View File

@ -846,7 +846,7 @@ failed:
sprintf(p++, ",");
}
printf("%-10s", buf);
buf[0] = NULL;
buf[0] = '\0';
for (nl = rs->nlist; nl; nl = nl->next) {
strcat(buf, nl->netid);
if (nl->next)