# HG changeset patch # User Mark Doliner # Date 1064879188 0 # Node ID 1ab06a680ac2753a4f383e967875398f8bc47b93 # Parent b599731f486d01555ae7136242e52da9f29e3e5f [gaim-migrate @ 7601] We voted against this, kind of. committer: Tailor Script diff -r b599731f486d -r 1ab06a680ac2 src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Mon Sep 29 23:43:43 2003 +0000 +++ b/src/protocols/oscar/oscar.c Mon Sep 29 23:46:28 2003 +0000 @@ -5446,18 +5446,8 @@ if ((b->uc & UC_UNAVAILABLE) || (((b->uc & 0xffff0000) >> 16) & AIM_ICQ_STATE_CHAT)) { if (isdigit(b->name[0])) ret = gaim_icq_status((b->uc & 0xffff0000) >> 16); - else { - aim_userinfo_t *userinfo = aim_locate_finduserinfo(b->name); - if ((userinfo != NULL) && (userinfo->flags & AIM_FLAG_AWAY) && (userinfo->away_len > 0) && (userinfo->away != NULL) && (userinfo->away_encoding != NULL)) { - gchar *away_utf8 = oscar_encoding_to_utf8(userinfo->away_encoding, userinfo->away, userinfo->away_len); - if (away_utf8 != NULL) { - ret = strip_html(away_utf8); - g_free(away_utf8); - } else - ret = g_strdup(_("Away")); - } else - ret = g_strdup(_("Away")); - } + else + ret = g_strdup(_("Away")); } else if (GAIM_BUDDY_IS_ONLINE(b)) { struct buddyinfo *bi = g_hash_table_lookup(od->buddyinfo, normalize(b->name)); if (bi->availmsg)