Changes in util.c [dd8d4c5:2a6ca4f]
Legend:
- Unmodified
- Added
- Removed
-
util.c
rdd8d4c5 r2a6ca4f 36 36 #include <stdlib.h> 37 37 #include <string.h> 38 #include <ctype.h>39 38 #include <glib.h> 40 39 #include <time.h> … … 378 377 for( i = j = 0; t[i]; i ++, j ++ ) 379 378 { 380 /* if( t[i] <= ' ' || ((unsigned char *)t)[i] >= 128 || t[i] == '%' ) */ 381 if( !isalnum( t[i] ) ) 379 if( t[i] <= ' ' || ((unsigned char *)t)[i] >= 128 || t[i] == '%' ) 382 380 { 383 381 sprintf( s + j, "%%%02X", ((unsigned char*)t)[i] );
Note: See TracChangeset
for help on using the changeset viewer.