Changeset d4a4f1a
- Timestamp:
- 2013-10-14T16:02:04Z (11 years ago)
- Branches:
- master
- Children:
- 08224f5, e73e165
- Parents:
- a685409
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_channel.c
ra685409 rd4a4f1a 35 35 { 36 36 irc_channel_t *ic; 37 set_t *s; 37 38 38 39 if( !irc_channel_name_ok( name ) || irc_channel_by_name( irc, name ) ) … … 49 50 50 51 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) */ 52 55 53 56 if( name[0] == '&' )
Note: See TracChangeset
for help on using the changeset viewer.