diff options
author | Stephan Mühlstrasser <stm@pdflib.com> | 2018-04-13 14:28:55 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-04-24 14:36:06 +0200 |
commit | dd7521bcc1b7a6fcb53c31f9bd1192fcc884bd56 (patch) | |
tree | f2b955ee5e5da25225901d8ed58379a7dfe65ca9 /lib/transfer.c | |
parent | e6c22368c6e5426ec2b1cb8a3041ebc98d0ad402 (diff) | |
download | curl-dd7521bcc1b7a6fcb53c31f9bd1192fcc884bd56.tar.gz |
ctype: restore character classification for non-ASCII platforms
With commit 4272a0b0fc49a1ac0ceab5c4a365c9f6ab8bf8e2 curl-speficic
character classification macros and functions were introduced in
curl_ctype.[ch] to avoid dependencies on the locale. This broke curl on
non-ASCII, e.g. EBCDIC platforms. This change restores the previous set
of character classification macros when CURL_DOES_CONVERSIONS is
defined.
Closes #2494
Diffstat (limited to 'lib/transfer.c')
-rw-r--r-- | lib/transfer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/transfer.c b/lib/transfer.c index 9712a7f7e..c586c727d 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -1519,7 +1519,7 @@ static void strcpy_url(char *output, const char *url, bool relative) left = FALSE; /* fall through */ default: - if(*iptr >= 0x80) { + if(!ISPRINT(*iptr)) { snprintf(optr, 4, "%%%02x", *iptr); optr += 3; } |