diff src/server.c @ 13789:99688ab310c8

[gaim-migrate @ 16201] Prepend last_auto_response structs to the list, instead of appending them. This probably won't make a significant difference. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 29 May 2006 17:18:17 +0000
parents b76c6de0c3b5
children a9ff4499d9ce
line wrap: on
line diff
--- a/src/server.c	Mon May 29 17:11:53 2006 +0000
+++ b/src/server.c	Mon May 29 17:18:17 2006 +0000
@@ -108,7 +108,7 @@
 	g_snprintf(lar->name, sizeof(lar->name), "%s", name);
 	lar->gc = gc;
 	lar->sent = 0;
-	last_auto_responses = g_slist_append(last_auto_responses, lar);
+	last_auto_responses = g_slist_prepend(last_auto_responses, lar);
 
 	return lar;
 }