Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • util.c

    rdd8d4c5 r2a6ca4f  
    3636#include <stdlib.h>
    3737#include <string.h>
    38 #include <ctype.h>
    3938#include <glib.h>
    4039#include <time.h>
     
    378377        for( i = j = 0; t[i]; i ++, j ++ )
    379378        {
    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] == '%' )
    382380                {
    383381                        sprintf( s + j, "%%%02X", ((unsigned char*)t)[i] );
Note: See TracChangeset for help on using the changeset viewer.