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