diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2007-12-19 00:26:36 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2007-12-19 00:26:36 +0000 |
| commit | facd9827942c7e735b3ecafb1e4719f022ab60c8 (patch) | |
| tree | 77d4f9993635ffc61688e8a0a9fcefed7606cf3e /lib/libfetch/fetch.c | |
| parent | 7ff4930d735fbd00203c81117aaea35d5cbfa2e5 (diff) | |
Notes
Diffstat (limited to 'lib/libfetch/fetch.c')
| -rw-r--r-- | lib/libfetch/fetch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libfetch/fetch.c b/lib/libfetch/fetch.c index 900b6853bfec..6c4901f64d96 100644 --- a/lib/libfetch/fetch.c +++ b/lib/libfetch/fetch.c @@ -369,7 +369,7 @@ fetchParseURL(const char *URL) /* port */ if (*p == ':') { for (q = ++p; *q && (*q != '/'); q++) - if (isdigit((int)*q)) + if (isdigit((unsigned char)*q)) u->port = u->port * 10 + (*q - '0'); else { /* invalid port */ @@ -395,7 +395,7 @@ nohost: } u->doc = doc; while (*p != '\0') { - if (!isspace((int)*p)) { + if (!isspace((unsigned char)*p)) { *doc++ = *p++; } else { *doc++ = '%'; |
