# HG changeset patch # User Luke Schierer # Date 1091733486 0 # Node ID 9c9932c9cd09cb9bd58fe7657b65c2b16ffc8525 # Parent 640102510dec0488bac3041d8d77fd9b41ef0bc7 [gaim-migrate @ 10531] "I just found an annoying bug this morning. Is it possible to get this fix (see attached patch) in before the release today?" -- Mike Stoddard of Novell committer: Tailor Script diff -r 640102510dec -r 9c9932c9cd09 src/protocols/novell/novell.c --- a/src/protocols/novell/novell.c Thu Aug 05 18:57:22 2004 +0000 +++ b/src/protocols/novell/novell.c Thu Aug 05 19:18:06 2004 +0000 @@ -268,7 +268,7 @@ nm_user_record_get_display_id(user_record)); alias = gaim_buddy_get_alias(buddy); - if (alias == NULL || (strcmp(alias, buddy->name) == 0)) { + if (alias == NULL || *alias == '\0' || (strcmp(alias, buddy->name) == 0)) { gaim_blist_alias_buddy(buddy, nm_user_record_get_full_name(user_record));