Mercurial > pidgin.yaz
changeset 14120:d812efcea547
[gaim-migrate @ 16754]
Warning fixes for now. Someone (probably me, sigh) will have
to change this to use gaim_proxy_connect_cancel() later in
the week
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Mon, 14 Aug 2006 08:27:53 +0000 |
parents | 54147aa1ffe6 |
children | 8af7f3a7015f |
files | src/protocols/yahoo/yahoo.c src/protocols/yahoo/yahoo_filexfer.c src/protocols/yahoo/yahoo_picture.c src/protocols/yahoo/yahoochat.c src/protocols/yahoo/ycht.c |
diffstat | 5 files changed, 8 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/src/protocols/yahoo/yahoo.c Mon Aug 14 08:24:30 2006 +0000 +++ b/src/protocols/yahoo/yahoo.c Mon Aug 14 08:27:53 2006 +0000 @@ -2239,7 +2239,7 @@ } } -static void yahoo_got_connected(gpointer data, gint source) +static void yahoo_got_connected(gpointer data, gint source, const gchar *error_message) { GaimConnection *gc = data; struct yahoo_data *yd; @@ -2266,7 +2266,7 @@ gc->inpa = gaim_input_add(yd->fd, GAIM_INPUT_READ, yahoo_pending, gc); } -static void yahoo_got_web_connected(gpointer data, gint source) +static void yahoo_got_web_connected(gpointer data, gint source, const gchar *error_message) { GaimConnection *gc = data; struct yahoo_data *yd; @@ -2390,7 +2390,7 @@ gc->inpa = gaim_input_add(source, GAIM_INPUT_READ, yahoo_web_pending, gc); } -static void yahoo_got_cookies(gpointer data, gint source) +static void yahoo_got_cookies(gpointer data, gint source, const gchar *error_message) { GaimConnection *gc = data;
--- a/src/protocols/yahoo/yahoo_filexfer.c Mon Aug 14 08:24:30 2006 +0000 +++ b/src/protocols/yahoo/yahoo_filexfer.c Mon Aug 14 08:27:53 2006 +0000 @@ -92,7 +92,7 @@ } -static void yahoo_receivefile_connected(gpointer data, gint source) +static void yahoo_receivefile_connected(gpointer data, gint source, const gchar *error_message) { GaimXfer *xfer; struct yahoo_xfer_data *xd; @@ -162,7 +162,7 @@ gaim_xfer_start(xfer, source, NULL, 0); } -static void yahoo_sendfile_connected(gpointer data, gint source) +static void yahoo_sendfile_connected(gpointer data, gint source, const gchar *error_message) { GaimXfer *xfer; struct yahoo_xfer_data *xd;
--- a/src/protocols/yahoo/yahoo_picture.c Mon Aug 14 08:24:30 2006 +0000 +++ b/src/protocols/yahoo/yahoo_picture.c Mon Aug 14 08:27:53 2006 +0000 @@ -406,7 +406,7 @@ } } -static void yahoo_buddy_icon_upload_connected(gpointer data, gint source) +static void yahoo_buddy_icon_upload_connected(gpointer data, gint source, const gchar *error_message) { struct yahoo_buddy_icon_upload_data *d = data; struct yahoo_packet *pkt;
--- a/src/protocols/yahoo/yahoochat.c Mon Aug 14 08:24:30 2006 +0000 +++ b/src/protocols/yahoo/yahoochat.c Mon Aug 14 08:27:53 2006 +0000 @@ -1373,7 +1373,7 @@ } -static void yahoo_roomlist_got_connected(gpointer data, gint source) +static void yahoo_roomlist_got_connected(gpointer data, gint source, const gchar *error_message) { struct yahoo_roomlist *yrl = data; GaimRoomlist *list = yrl->list;
--- a/src/protocols/yahoo/ycht.c Mon Aug 14 08:24:30 2006 +0000 +++ b/src/protocols/yahoo/ycht.c Mon Aug 14 08:27:53 2006 +0000 @@ -528,7 +528,7 @@ } } -static void ycht_got_connected(gpointer data, gint source) +static void ycht_got_connected(gpointer data, gint source, const gchar *error_message) { YchtConn *ycht = data; GaimConnection *gc = ycht->gc;