summaryrefslogtreecommitdiffstats
path: root/lib/libfetch/common.c
diff options
context:
space:
mode:
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