Mercurial > pidgin.yaz
diff src/protocols/irc/irc.c @ 2681:37d80035e77f
[gaim-migrate @ 2694]
don't ask.
committer: Tailor Script <tailor@pidgin.im>
| author | Eric Warmenhoven <eric@warmenhoven.org> |
|---|---|
| date | Tue, 06 Nov 2001 23:58:24 +0000 |
| parents | 65a602693286 |
| children | 2d544f48146d |
line wrap: on
line diff
--- a/src/protocols/irc/irc.c Tue Nov 06 21:30:31 2001 +0000 +++ b/src/protocols/irc/irc.c Tue Nov 06 23:58:24 2001 +0000 @@ -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;
