diff options
author | 2007-04-05 01:31:05 +0000 | |
---|---|---|
committer | 2007-04-05 01:31:05 +0000 | |
commit | 3f36beae6148271d405856ce09ca80e951a3570e (patch) | |
tree | 1cc1f7ca116d8ec08fcf0f17bb73bae7efd3eeb4 | |
parent | For verbose archive listings, use -> for symlinks, not =>, (diff) | |
download | wireguard-openbsd-3f36beae6148271d405856ce09ca80e951a3570e.tar.xz wireguard-openbsd-3f36beae6148271d405856ce09ca80e951a3570e.zip |
remove extra test, but do it correctly this time
-rw-r--r-- | usr.sbin/afs/src/lib/ko/kocell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/afs/src/lib/ko/kocell.c b/usr.sbin/afs/src/lib/ko/kocell.c index 0d94ed4107d..afcd384ecf0 100644 --- a/usr.sbin/afs/src/lib/ko/kocell.c +++ b/usr.sbin/afs/src/lib/ko/kocell.c @@ -429,7 +429,7 @@ readdb (char *line, cell_entry* c, int *dbnum, int maxdbs, return -1; } - while (*line && isspace((unsigned char)*line)) + while (isspace((unsigned char)*line)) ++line; if (inet_aton (line, &numaddr) == 0) { @@ -487,7 +487,7 @@ readcellservdb (const char *filename) ++lineno; i = 0; line[strcspn(line, "\n")] = '\0'; - while (line[0] && isspace((unsigned char)line[i])) + while (isspace((unsigned char)line[i])) i++; if (line[i] == '#' || line[i] == '\0') continue; |