diff options
author | 2007-03-20 03:44:18 +0000 | |
---|---|---|
committer | 2007-03-20 03:44:18 +0000 | |
commit | b7f3b5478f511c0e035fae282e2172d38d0b6335 (patch) | |
tree | db733782a41976460539d73daf6cc1a22c88e14f | |
parent | remove some bogus *p from charles longeau (diff) | |
download | wireguard-openbsd-b7f3b5478f511c0e035fae282e2172d38d0b6335.tar.xz wireguard-openbsd-b7f3b5478f511c0e035fae282e2172d38d0b6335.zip |
remove *p
-rw-r--r-- | kerberosV/src/appl/test/http_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kerberosV/src/appl/test/http_client.c b/kerberosV/src/appl/test/http_client.c index 49e7c101986..e066d89b3cd 100644 --- a/kerberosV/src/appl/test/http_client.c +++ b/kerberosV/src/appl/test/http_client.c @@ -375,7 +375,7 @@ main(int argc, char **argv) } i = 9; - while(h[i] && isspace((unsigned char)h[i])) + while(isspace((unsigned char)h[i])) i++; if (h[i] != '\0') { int len = strlen(&h[i]); |