aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/oscar/rxhandlers.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2012-10-20 00:38:33 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2012-10-20 00:38:33 +0100
commit6042a54e827b36770e8989d9a8ba49a66ec6f846 (patch)
tree80fb3767c863d88f03d20f310762706664a3ef19 /protocols/oscar/rxhandlers.c
parent386042c08547bbe7f0b62ad97cdd8488cc13e97e (diff)
Massive cleanup in OSCAR.
Diffstat (limited to 'protocols/oscar/rxhandlers.c')
-rw-r--r--protocols/oscar/rxhandlers.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/protocols/oscar/rxhandlers.c b/protocols/oscar/rxhandlers.c
index 7014e693..bd071505 100644
--- a/protocols/oscar/rxhandlers.c
+++ b/protocols/oscar/rxhandlers.c
@@ -285,18 +285,6 @@ aim_rxcallback_t aim_callhandler(aim_session_t *sess, aim_conn_t *conn, guint16
return aim_callhandler(sess, conn, family, AIM_CB_SPECIAL_DEFAULT);
}
-void aim_clonehandlers(aim_session_t *sess, aim_conn_t *dest, aim_conn_t *src)
-{
- struct aim_rxcblist_s *cur;
-
- for (cur = (struct aim_rxcblist_s *)src->handlerlist; cur; cur = cur->next) {
- aim_conn_addhandler(sess, dest, cur->family, cur->type,
- cur->handler, cur->flags);
- }
-
- return;
-}
-
static int aim_callhandler_noparam(aim_session_t *sess, aim_conn_t *conn,guint16 family, guint16 type, aim_frame_t *ptr)
{
aim_rxcallback_t userfunc;