Changeset c99af3a for irc.c


Ignore:
Timestamp:
2006-04-13T07:30:11Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
4d89886
Parents:
88b3a07
Message:

Removed account_offline(), we have signoff() already.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc.c

    r88b3a07 rc99af3a  
    233233       
    234234        for (account = irc->accounts; account; account = account->next) {
    235                 if (account->gc)
    236                         account_offline(account->gc);
    237                 else if (account->reconnect)
     235                if (account->gc) {
     236                        account->gc->wants_to_die = TRUE;
     237                        signoff(account->gc);
     238                } else if (account->reconnect) {
    238239                        cancel_auto_reconnect(account);
     240                }
    239241        }
    240242       
Note: See TracChangeset for help on using the changeset viewer.