diff src/protocols/zephyr/zephyr.c @ 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 bf630f7dfdcd
children 1930e3d00ecd
line wrap: on
line diff
--- 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 {