gaim/gaim

log this!
oldstatus
2005-06-17, Nathan Walp
3160e73c2662
Parents 6ae723d66cd1
Children bfbf4354ea1f
log this!
  • +2 -1
    ChangeLog
  • +1 -1
    src/account.c
  • --- a/ChangeLog Mon Jun 13 22:25:34 2005 -0400
    +++ b/ChangeLog Fri Jun 17 09:08:51 2005 -0400
    @@ -1,7 +1,7 @@
    Gaim: The Pimpin' Penguin IM Client that's good for the soul!
    version 1.3.2:
    - * No changes
    + * Fix system log start times for some protocols
    version 1.3.1 (6/9/2005):
    * The file transfer details section now also displays the full path to
    @@ -12,6 +12,7 @@
    * Updated our gaim.desktop file, thanks to all our terrific translators
    for sending in translations of the changes
    * Improvements to how Gaim handles new message notification
    + * Fix Jabber registration on XMPP servers (including jabber.org)
    version 1.3.0 (5/10/2005):
    * Removed parts of the font selection dialog that were not respected
    --- a/src/account.c Mon Jun 13 22:25:34 2005 -0400
    +++ b/src/account.c Fri Jun 17 09:08:51 2005 -0400
    @@ -936,7 +936,7 @@
    account->system_log = gaim_log_new(GAIM_LOG_SYSTEM,
    gaim_account_get_username(account), account,
    - gc != NULL ? gc->login_time : time(NULL));
    + (gc != NULL && gc->login_time != 0) ? gc->login_time : time(NULL));
    }
    return account->system_log;