replace isprint() with ISPRINT()
This commit is contained in:
parent
54aca3c5ec
commit
6b6fe2a4d5
@ -223,7 +223,7 @@ static int setcharset(unsigned char **p, unsigned char *charset)
|
|||||||
}
|
}
|
||||||
else if(c == '\\') {
|
else if(c == '\\') {
|
||||||
c = *(++(*p));
|
c = *(++(*p));
|
||||||
if(isprint(c)) {
|
if(ISPRINT(c)) {
|
||||||
charset[c] = 1;
|
charset[c] = 1;
|
||||||
(*p)++;
|
(*p)++;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user