diff src/protocols/irc/irc.c @ 6350:34c07f5f34a0

[gaim-migrate @ 6849] -Compile warning fixes from The Man (Paco-Paco) -2 memleak fixes from me. One of them leaked the size of a chat message when either sending or receiving, I forgot which (my bad!) -Hopefully make AIM correctly refetch your buddy list when AOL doesn't send it to you the first time -Maybe something else -Chocolate -Vanilla -Strawberry -Napoleon committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 31 Jul 2003 23:21:36 +0000
parents e06e04e44914
children 07b30424146b
line wrap: on
line diff
--- a/src/protocols/irc/irc.c	Thu Jul 31 23:08:54 2003 +0000
+++ b/src/protocols/irc/irc.c	Thu Jul 31 23:21:36 2003 +0000
@@ -31,6 +31,7 @@
 #include "conversation.h"
 #include "debug.h"
 #include "blist.h"
+#include "util.h"
 #include "irc.h"
 
 static void irc_buddy_append(char *name, struct irc_buddy *ib, GString *string);
@@ -108,9 +109,6 @@
 
 static GList *irc_buddy_menu(GaimConnection *gc, const char *who)
 {
-	struct irc_conn *irc = gc->proto_data;
-	struct proto_buddy_menu *pbm;
-
 	return NULL;
 }
 
@@ -429,7 +427,7 @@
 	NULL,
 	irc_away_states,
 	NULL,
-	NULL, /*irc_buddy_menu,*/
+	irc_buddy_menu,
 	irc_chat_join_info,
 	irc_login,
 	irc_close,