mirror of
https://github.com/nmap/nmap.git
synced 2026-08-28 12:31:12 +00:00
Updated uses of the ctype function to support explict casting of the arguments
to (int)(unsigned char).
This commit is contained in:
parent
990db60861
commit
df71e36084
14 changed files with 73 additions and 72 deletions
|
|
@ -144,7 +144,7 @@ static void skid_output(char *s)
|
|||
case 'O': s[i]='0'; break;
|
||||
case 's':
|
||||
case 'S':
|
||||
if (s[i+1] && !isalnum((int) s[i+1]))
|
||||
if (s[i+1] && !isalnum((int) (unsigned char) s[i+1]))
|
||||
s[i] = 'z';
|
||||
else s[i] = '$';
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue