| 1927 presence = gaim_account_get_presence(account); |
1927 presence = gaim_account_get_presence(account); |
| 1928 login_time = gaim_presence_get_login_time(presence); |
1928 login_time = gaim_presence_get_login_time(presence); |
| 1929 |
1929 |
| 1930 account->system_log = gaim_log_new(GAIM_LOG_SYSTEM, |
1930 account->system_log = gaim_log_new(GAIM_LOG_SYSTEM, |
| 1931 gaim_account_get_username(account), account, NULL, |
1931 gaim_account_get_username(account), account, NULL, |
| 1932 (login_time != 0) ? login_time : time(NULL)); |
1932 (login_time != 0) ? login_time : time(NULL), NULL); |
| 1933 } |
1933 } |
| 1934 |
1934 |
| 1935 return account->system_log; |
1935 return account->system_log; |
| 1936 } |
1936 } |
| 1937 |
1937 |