aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/nogaim.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2007-04-20 21:13:21 -0700
committerWilmer van der Gaast <wilmer@gaast.net>2007-04-20 21:13:21 -0700
commitf6c963b97d3f686ca5410f1896cf8e266b455c22 (patch)
treeec6c30713de6c79b81ef485ecc8b82f17188b165 /protocols/nogaim.c
parentb0eaa5b5a0ab866791992f6f1d7f011d012d103d (diff)
Renamed some more prpl functions.
Diffstat (limited to 'protocols/nogaim.c')
-rw-r--r--protocols/nogaim.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/protocols/nogaim.c b/protocols/nogaim.c
index c27a684d..a70d6eca 100644
--- a/protocols/nogaim.c
+++ b/protocols/nogaim.c
@@ -281,7 +281,6 @@ gboolean auto_reconnect( gpointer data, gint fd, b_input_condition cond )
void cancel_auto_reconnect( account_t *a )
{
- /* while( b_event_remove_by_data( (gpointer) a ) ); */
b_event_remove( a->reconnect );
a->reconnect = 0;
}
@@ -947,7 +946,7 @@ int imc_buddy_msg( struct im_connection *ic, char *handle, char *msg, int flags
msg = buf;
}
- st = ic->acc->prpl->send_im( ic, handle, msg, flags );
+ st = ic->acc->prpl->buddy_msg( ic, handle, msg, flags );
g_free( buf );
return st;
@@ -963,7 +962,7 @@ int imc_chat_msg( struct groupchat *c, char *msg, int flags )
msg = buf;
}
- c->ic->acc->prpl->chat_send( c, msg, flags );
+ c->ic->acc->prpl->chat_msg( c, msg, flags );
g_free( buf );
return 1;