src/protocols/irc/irc.c

changeset 12658
4aa7a873628d
parent 12645
a907ba243930
child 12752
612eb998c9b5
--- a/src/protocols/irc/irc.c	Sun Dec 25 18:52:49 2005 +0000
+++ b/src/protocols/irc/irc.c	Sun Dec 25 19:09:25 2005 +0000
@@ -163,9 +163,6 @@
 	GaimStatusType *type;
 	GList *types = NULL;
 
-	type = gaim_status_type_new(GAIM_STATUS_OFFLINE, NULL, NULL, TRUE);
-	types = g_list_append(types, type);
-
 	type = gaim_status_type_new(GAIM_STATUS_AVAILABLE, NULL, NULL, TRUE);
 	types = g_list_append(types, type);
 
@@ -175,6 +172,9 @@
 		NULL);
 	types = g_list_append(types, type);
 
+	type = gaim_status_type_new(GAIM_STATUS_OFFLINE, NULL, NULL, TRUE);
+	types = g_list_append(types, type);
+
 	return types;
 }
 

mercurial