# HG changeset patch # User Richard Laager # Date 1139635060 0 # Node ID 502a4de3365c7370c11bd3a0124be3b73e7b8ffc # Parent 0ce20e0a13965c84cc437f77dfa1302aacf149e8 [gaim-migrate @ 15581] When contact alias == buddy alias, there's no point in showing the alias either. I'm probably the only person affected by this, because I use a weird aliasing scheme. committer: Tailor Script diff -r 0ce20e0a1396 -r 502a4de3365c src/gtkblist.c --- a/src/gtkblist.c Fri Feb 10 21:22:09 2006 +0000 +++ b/src/gtkblist.c Sat Feb 11 05:17:40 2006 +0000 @@ -2620,7 +2620,8 @@ /* If there's not a contact alias, the node is being displayed with * this alias, so there's no point in showing it in the tooltip. */ if (full && b->alias != NULL && b->alias[0] != '\0' && - (c->alias != NULL && c->alias[0] != '\0')) + (c->alias != NULL && c->alias[0] != '\0') && + strcmp(c->alias, b->alias) != 0) { tmp = g_markup_escape_text(b->alias, -1); g_string_append_printf(str, _("\nBuddy Alias: %s"), tmp);