# HG changeset patch # User Nathan Walp # Date 1071426780 0 # Node ID e4ada6d46b75b9a5b339fa035da6a0ce855fe0bf # Parent 30ee5c52b8dc04c49a08a9e3c923f4f6e62cf252 [gaim-migrate @ 8525] this didn't give me any clues...maybe it will give someone else clues (we should probably take this out before we release) committer: Tailor Script diff -r 30ee5c52b8dc -r e4ada6d46b75 src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Sun Dec 14 17:31:58 2003 +0000 +++ b/src/protocols/oscar/oscar.c Sun Dec 14 18:33:00 2003 +0000 @@ -5459,6 +5459,14 @@ if (userinfo != NULL) { char *tstr = gaim_str_seconds_to_string(time(NULL) - userinfo->onlinesince + (gc->login_time_official ? gc->login_time_official - gc->login_time : 0)); + /* maybe this will help us figure out the rediculous online times */ + gaim_debug_info("oscar", "time(NULL): %u\n" + "user->onlinesince: %u\n" + "gc->login_time_official: %u\n" + "gc->login_time: %u\n", + time(NULL), userinfo->onlinesince, gc->login_time_official, + gc->login_time); + tmp = ret; ret = g_strconcat(tmp, _("Logged In: "), tstr, "\n", NULL); g_free(tmp);