Changeset 1688
- Timestamp:
- 03/03/10 16:30:47 (6 months ago)
- Files:
-
- 1 modified
-
branches/oftc-ircservices-1.3/src/channel.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/oftc-ircservices-1.3/src/channel.c
r1402 r1688 145 145 assert(dlink_list_length(&chptr->members) == 0); 146 146 ilog(L_DEBUG, "Destroying empty channel %s", chptr->chname); 147 execute_callback(on_channel_destroy_cb, chptr);148 147 destroy_channel(chptr); 149 148 } … … 191 190 destroy_channel(struct Channel *chptr) 192 191 { 192 execute_callback(on_channel_destroy_cb, chptr); 193 193 /* free ban/exception/invex lists */ 194 194 free_channel_list(&chptr->banlist);
