diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2007-12-18 10:41:12 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2007-12-18 10:41:12 +0000 |
| commit | 836e34eeae25a1ac5c6f284907308bb68fa8ba3d (patch) | |
| tree | 13ed2dfaacf453128e0dc265913fc55fd814ec7f /lib/libfetch/fetch.c | |
| parent | fa44a2923eea307bf9253fb6aee5a771dd6e3bc5 (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 b98fa56ba798..900b6853bfec 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(*q)) + if (isdigit((int)*q)) u->port = u->port * 10 + (*q - '0'); else { /* invalid port */ @@ -395,7 +395,7 @@ nohost: } u->doc = doc; while (*p != '\0') { - if (!isspace(*p)) { + if (!isspace((int)*p)) { *doc++ = *p++; } else { *doc++ = '%'; |
