- Timestamp:
- 2008-08-31T15:00:35Z (16 years ago)
- Branches:
- master
- Children:
- 3b99524
- Parents:
- d995c9b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/nogaim.c
rd995c9b r3611717 249 249 void imcb_connected( struct im_connection *ic ) 250 250 { 251 irc_t *irc = ic->irc; 252 struct chat *c; 251 253 user_t *u; 252 254 … … 271 273 exponential backoff timer. */ 272 274 ic->acc->auto_reconnect_delay = 0; 275 276 for( c = irc->chatrooms; c; c = c->next ) 277 { 278 if( c->acc != ic->acc ) 279 continue; 280 281 if( set_getbool( &c->set, "auto_join" ) ) 282 chat_join( irc, c ); 283 } 273 284 } 274 285
Note: See TracChangeset
for help on using the changeset viewer.