Changeset 6738a67 for set.c


Ignore:
Timestamp:
2008-07-16T23:22:52Z (16 years ago)
Author:
Sven Moritz Hallberg <pesco@…>
Branches:
master
Children:
9b55485
Parents:
9730d72 (diff), 6a78c0e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

merge in latest trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • set.c

    r9730d72 r6738a67  
    357357}
    358358
    359 char *set_eval_charset( set_t *set, char *value )
    360 {
    361         GIConv cd;
    362 
    363         if ( g_strncasecmp( value, "none", 4 ) == 0 )
    364                 return value;
    365 
    366         cd = g_iconv_open( "UTF-8", value );
    367         if( cd == (GIConv) -1 )
    368                 return NULL;
    369 
    370         g_iconv_close( cd );
    371         return value;
    372 }
    373 
    374359/* possible values: never, opportunistic, manual, always */
    375360char *set_eval_otr_policy( set_t *set, char *value )
Note: See TracChangeset for help on using the changeset viewer.