diff options
| author | 2007-03-20 03:31:22 +0000 | |
|---|---|---|
| committer | 2007-03-20 03:31:22 +0000 | |
| commit | 162cb51daaa3a8268869e7fd9f7467b0f9361ab9 (patch) | |
| tree | 33070fd3ef9ae6ee63fce2a39736757a42b88b40 /usr.sbin/bind/lib/isc/string.c | |
| parent | Fake out target id for bioc_disk. (diff) | |
| download | wireguard-openbsd-162cb51daaa3a8268869e7fd9f7467b0f9361ab9.tar.xz wireguard-openbsd-162cb51daaa3a8268869e7fd9f7467b0f9361ab9.zip | |
remove some bogus *p tests from charles longeau
ok deraadt millert
Diffstat (limited to 'usr.sbin/bind/lib/isc/string.c')
| -rw-r--r-- | usr.sbin/bind/lib/isc/string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bind/lib/isc/string.c b/usr.sbin/bind/lib/isc/string.c index 00a47a0ffeb..d01af8ac755 100644 --- a/usr.sbin/bind/lib/isc/string.c +++ b/usr.sbin/bind/lib/isc/string.c @@ -38,7 +38,7 @@ isc_string_touint64(char *source, char **end, int base) { return (0); } - while (*s != 0 && isascii(*s&0xff) && isspace(*s&0xff)) + while (isascii(*s&0xff) && isspace(*s&0xff)) s++; if (*s == '+' /* || *s == '-' */) s++; |
