Changes in account.c [f3579fd:f86a3d5]
Legend:
- Unmodified
- Added
- Removed
-
account.c
rf3579fd rf86a3d5 190 190 { 191 191 account_t *a, *l = NULL; 192 struct chat *c, *nc; 192 193 193 194 if( acc->ic ) … … 202 203 else 203 204 irc->accounts = a->next; 205 206 for( c = irc->chatrooms; c; c = nc ) 207 { 208 nc = c->next; 209 if( acc == c->acc ) 210 chat_del( irc, c ); 211 } 204 212 205 213 while( a->set )
Note: See TracChangeset
for help on using the changeset viewer.