Changes in / [51f937e:e73e165]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc_channel.c

    r51f937e re73e165  
    3535{
    3636        irc_channel_t *ic;
     37        set_t *s;
    3738       
    3839        if( !irc_channel_name_ok( name ) || irc_channel_by_name( irc, name ) )
     
    4950       
    5051        set_add( &ic->set, "auto_join", "false", set_eval_bool, ic );
    51         set_add( &ic->set, "type", "control", set_eval_channel_type, ic );
     52       
     53        s = set_add( &ic->set, "type", "control", set_eval_channel_type, ic );
     54        s->flags |= SET_NOSAVE;    /* Layer violation (XML format detail) */
    5255       
    5356        if( name[0] == '&' )
Note: See TracChangeset for help on using the changeset viewer.