projects
/
platform
/
upstream
/
curl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
54aca3c
)
replace isprint() with ISPRINT()
author
Yang Tse
<yangsita@gmail.com>
Thu, 10 Jun 2010 00:33:45 +0000
(
02:33
+0200)
committer
Yang Tse
<yangsita@gmail.com>
Thu, 10 Jun 2010 00:33:45 +0000
(
02:33
+0200)
lib/curl_fnmatch.c
patch
|
blob
|
history
diff --git
a/lib/curl_fnmatch.c
b/lib/curl_fnmatch.c
index
0725ce2
..
ad4ec18
100644
(file)
--- a/
lib/curl_fnmatch.c
+++ b/
lib/curl_fnmatch.c
@@
-223,7
+223,7
@@
static int setcharset(unsigned char **p, unsigned char *charset)
}
else if(c == '\\') {
c = *(++(*p));
- if(
isprint
(c)) {
+ if(
ISPRINT
(c)) {
charset[c] = 1;
(*p)++;
}