From: Eric W. <war...@us...> - 2001-11-06 23:58:26
|
Update of /cvsroot/gaim/gaim/src/protocols/irc In directory usw-pr-cvs1:/tmp/cvs-serv20708/src/protocols/irc Modified Files: irc.c Log Message: don't ask. Index: irc.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/irc/irc.c,v retrieving revision 1.53 retrieving revision 1.54 diff -u -d -r1.53 -r1.54 --- irc.c 2001/11/01 08:05:38 1.53 +++ irc.c 2001/11/06 23:58:22 1.54 @@ -1338,7 +1338,8 @@ } /* IRC doesn't have a buddy list, but we can still figure out who's online with ISON */ -static void irc_fake_buddy(struct gaim_connection *gc, char *who) {} +static void irc_add_buddy(struct gaim_connection *gc, char *who) {} +static void irc_remove_buddy(struct gaim_connection *gc, char *who, char *group) {} static GList *irc_chat_info(struct gaim_connection *gc) { @@ -1461,8 +1462,8 @@ ret->login = irc_login; ret->close = irc_close; ret->send_im = irc_send_im; - ret->add_buddy = irc_fake_buddy; - ret->remove_buddy = irc_fake_buddy; + ret->add_buddy = irc_add_buddy; + ret->remove_buddy = irc_remove_buddy; ret->chat_info = irc_chat_info; ret->join_chat = irc_join_chat; ret->chat_leave = irc_chat_leave; |