diff --git a/mtx-1.3.12/mtxl.c b/mtx-1.3.12/mtxl.c index 57bbcbb..1e46951 100644 --- a/mtx-1.3.12/mtxl.c +++ b/mtx-1.3.12/mtxl.c @@ -631,7 +631,7 @@ void copy_char_buffer(unsigned char *src, unsigned char *dest, int num) for (i=0; i < num; i++) { - if (isalnum(*src)) { + if (isxdigit(*src)) { *dest++ = *src; } src++;