changeset 7126:eda3de6dacbb

[gaim-migrate @ 7693] closes former bug (current patch) # 816124 committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Thu, 02 Oct 2003 13:06:42 +0000
parents 208cb260d7a7
children 4c0b7e7118ee
files ChangeLog src/protocols/zephyr/zephyr.c
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)
--- 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 {