summaryrefslogtreecommitdiffstats
path: root/lib/libfetch/common.c
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2007-12-19 00:26:36 +0000
committerdes <des@FreeBSD.org>2007-12-19 00:26:36 +0000
commitd198b4b8bb4da44884c0738e938e1ac5cec10b47 (patch)
tree77d4f9993635ffc61688e8a0a9fcefed7606cf3e /lib/libfetch/common.c
parenta2bd2e60b52b58d78553d8455b6d7fca40592eea (diff)
downloadFreeBSD-src-d198b4b8bb4da44884c0738e938e1ac5cec10b47.zip
FreeBSD-src-d198b4b8bb4da44884c0738e938e1ac5cec10b47.tar.gz
As several people pointed out, I did all the ctype casts the wrong
way (not for the first time...) Noticed by: bde, ru ++ MFC after: 1 week
Diffstat (limited to 'lib/libfetch/common.c')
-rw-r--r--lib/libfetch/common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libfetch/common.c b/lib/libfetch/common.c
index 936524f..2246560 100644
--- a/lib/libfetch/common.c
+++ b/lib/libfetch/common.c
@@ -763,12 +763,12 @@ fetch_no_proxy_match(const char *host)
p = no_proxy;
do {
/* position p at the beginning of a domain suffix */
- while (*p == ',' || isspace((int)*p))
+ while (*p == ',' || isspace((unsigned char)*p))
p++;
/* position q at the first separator character */
for (q = p; *q; ++q)
- if (*q == ',' || isspace((int)*q))
+ if (*q == ',' || isspace((unsigned char)*q))
break;
d_len = q - p;
OpenPOWER on IntegriCloud