diff src/protocols/zephyr/zephyr.c @ 9775:4c1a1be8ce33

[gaim-migrate @ 10643] A patch from Daniel Atallah to remove duplicate semicolons committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 19 Aug 2004 01:06:34 +0000
parents 4a8bf81b82ae
children 62eb9fe24692
line wrap: on
line diff
--- a/src/protocols/zephyr/zephyr.c	Wed Aug 18 11:46:46 2004 +0000
+++ b/src/protocols/zephyr/zephyr.c	Thu Aug 19 01:06:34 2004 +0000
@@ -1074,9 +1074,9 @@
 		
 		/* deal with classes */
 		if (!g_ascii_strcasecmp(triple[0],zephyr->ourhost)) {
-			zclass = g_strdup("%host%");;
+			zclass = g_strdup("%host%");
 		} else if (!g_ascii_strcasecmp(triple[0],zephyr->ourhostcanon)) {
-			zclass = g_strdup("%canon%");;
+			zclass = g_strdup("%canon%");
 		} else {
 			zclass = g_strdup(triple[0]);
 		}
@@ -1084,9 +1084,9 @@
 		/* deal with instances */
 
 		if (!g_ascii_strcasecmp(triple[1],zephyr->ourhost)) {
-			zinst = g_strdup("%host%");;
+			zinst = g_strdup("%host%");
 		} else if (!g_ascii_strcasecmp(triple[1],zephyr->ourhostcanon)) {
-			zinst = g_strdup("%canon%");;
+			zinst = g_strdup("%canon%");
 			} else {
 			zinst = g_strdup(triple[1]);
 			}