# HG changeset patch # User Mark Doliner # Date 1047797007 0 # Node ID 0c95a373124458ca4224d35b6e5c0abc5c6f1b58 # Parent 9561a11041314ad91bb51766c6cc7e85ec938287 [gaim-migrate @ 5118] People seemed to like this better this way. Me? I'm not so sure, but hey, I was raised to believe that celery should never be eaten if it hasn't been dipped in warm chocolate sauce. committer: Tailor Script diff -r 9561a1104131 -r 0c95a3731244 src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Sun Mar 16 04:39:41 2003 +0000 +++ b/src/protocols/oscar/oscar.c Sun Mar 16 06:43:27 2003 +0000 @@ -2888,10 +2888,9 @@ if (bi) { char *caps = caps_string(bi->caps); - char *time = asctime(localtime(&bi->signon)); - *(strchr(time, '\n')) = '\0'; - return g_strdup_printf(_("Online Since: %s%s%s"), - time, + char *tstr = sec_to_text(time(NULL) - bi->signon); + return g_strdup_printf(_("Logged In: %s%s%s"), + tstr, caps ? _("\nCapabilities: ") : "", caps ? caps : ""); } else { return NULL;