1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-01 04:19:02 +00:00

Change a couple ISPRINT() macro uses to nse_isprint() in nse_string.cc. nse_isprint() just uses ISPRINT() right now anyway.

This commit is contained in:
kris
2007-01-26 00:04:54 +00:00
parent b8b7e2c47a
commit 81cb9193e8

View File

@@ -18,7 +18,7 @@ char* nse_printable(const void *data, unsigned int data_len) {
unsigned int i;
for(i = 0; i < data_len; i++) {
if(ISPRINT(c_data[i]))
if(nse_isprint(c_data[i]))
result[i] = c_data[i];
else
result[i] = NOT_PRINTABLE;
@@ -42,7 +42,7 @@ char* nse_hexify(const void *data, unsigned int data_len) {
// if more than 95% of all characters are printable, we don't hexify
for(i = 0; i < data_len; i++) {
if(ISPRINT(c_data[i]))
if(nse_isprint(c_data[i]))
printable_chars++;
}