# HG changeset patch # User Luke Schierer # Date 1065100002 0 # Node ID eda3de6dacbb69894cbbbad81d638b8d21817795 # Parent 208cb260d7a7ef14cd29ee9f49d061540ab90d88 [gaim-migrate @ 7693] closes former bug (current patch) # 816124 committer: Tailor Script diff -r 208cb260d7a7 -r eda3de6dacbb ChangeLog --- a/ChangeLog Thu Oct 02 05:26:40 2003 +0000 +++ b/ChangeLog Thu Oct 02 13:06:42 2003 +0000 @@ -11,7 +11,8 @@ * Multiple copies of gaim installed at different locations no longer attempt to load the same, possibly incompatible plugins (Robert McQueen) - * Zepher formatting fixes (Arun A Tharuvai) + * Zephyr formatting fixes (Arun A Tharuvai) + * Zephyr can connect to chats (Karsten Huneycutt) * Get User Info in MSN and Yahoo now return an error indicating that the information doesn't exist if the profile is empty (parts by Nathan Poznick) diff -r 208cb260d7a7 -r eda3de6dacbb src/protocols/zephyr/zephyr.c --- a/src/protocols/zephyr/zephyr.c Thu Oct 02 05:26:40 2003 +0000 +++ b/src/protocols/zephyr/zephyr.c Thu Oct 02 13:06:42 2003 +0000 @@ -835,6 +835,10 @@ static char *zephyr_normalize(const char *orig) { static char buf[80]; + if (!g_ascii_strcasecmp(orig, "")) { + buf[0] = '\0'; + return buf; + } if (strchr(orig, '@')) { g_snprintf(buf, 80, "%s", orig); } else {