Mercurial > pidgin.yaz
changeset 25511:7a3c3c360624
propagate from branch 'im.pidgin.pidgin' (head 3c31f6f6c8e998f6e9c550e05bf5dfdcdc9bb154)
to branch 'im.pidgin.pidgin.yaz' (head 4179b6eb2d8edc1ed6fa386a82968044b7b8b806)
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Mon, 11 Jun 2007 13:28:20 +0000 |
parents | 18b62b0fc253 (diff) cf708cbcbc04 (current diff) |
children | ff69c2a9ccf2 |
files | libpurple/protocols/oscar/oscar.c |
diffstat | 3 files changed, 12 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/oscar/oscar.c Mon Jun 11 13:10:14 2007 +0000 +++ b/libpurple/protocols/oscar/oscar.c Mon Jun 11 13:28:20 2007 +0000 @@ -1846,9 +1846,8 @@ signon = time(NULL) - info->sessionlen; if (!aim_sncmp(purple_account_get_username(account), info->sn)) { purple_connection_set_display_name(gc, info->sn); - od->timeoffset = signon - purple_presence_get_login_time(presence); - } - purple_prpl_got_user_login_time(account, info->sn, signon - od->timeoffset); + } + purple_prpl_got_user_login_time(account, info->sn, signon); /* Idle time stuff */ /* info->idletime is the number of minutes that this user has been idle */ @@ -2875,12 +2874,12 @@ g_free(tmp); if (userinfo->present & AIM_USERINFO_PRESENT_ONLINESINCE) { - time_t t = userinfo->onlinesince - od->timeoffset; + time_t t = userinfo->onlinesince; oscar_user_info_add_pair(user_info, _("Online Since"), purple_date_format_full(localtime(&t))); } if (userinfo->present & AIM_USERINFO_PRESENT_MEMBERSINCE) { - time_t t = userinfo->membersince - od->timeoffset; + time_t t = userinfo->membersince; oscar_user_info_add_pair(user_info, _("Member Since"), purple_date_format_full(localtime(&t))); }
--- a/libpurple/protocols/oscar/oscar.h Mon Jun 11 13:10:14 2007 +0000 +++ b/libpurple/protocols/oscar/oscar.h Mon Jun 11 13:28:20 2007 +0000 @@ -447,7 +447,6 @@ guint icontimer; guint getblisttimer; guint getinfotimer; - gint timeoffset; struct { guint maxwatchers; /* max users who can watch you */
--- a/pidgin/gtkblist.c Mon Jun 11 13:10:14 2007 +0000 +++ b/pidgin/gtkblist.c Mon Jun 11 13:28:20 2007 +0000 @@ -2994,7 +2994,14 @@ signon = purple_presence_get_login_time(presence); if (full && PURPLE_BUDDY_IS_ONLINE(b) && signon > 0) { - tmp = purple_str_seconds_to_string(time(NULL) - signon); + if (time(NULL) - signon > 63072000 /* 2 years */) { + /* + * Our local clock must be wrong, show the actual + * date instead of "4 days", etc. + */ + tmp = g_strdup(purple_date_format_long(localtime(&signon))); + } else + tmp = purple_str_seconds_to_string(time(NULL) - signon); purple_notify_user_info_add_pair(user_info, _("Logged In"), tmp); g_free(tmp); }