[gaim-migrate @ 15637]

Mon, 13 Feb 2006 05:32:42 +0000

author
Daniel Atallah <datallah@pidgin.im>
date
Mon, 13 Feb 2006 05:32:42 +0000
changeset 13272
fd4f3356640f
parent 13271
93767a806808
child 13273
68a4ff81c348

[gaim-migrate @ 15637]
Fix some of the silly signedness issues that I introduced

src/protocols/yahoo/yahoo_filexfer.c file | annotate | diff | comparison | revisions
src/protocols/yahoo/yahoo_picture.c file | annotate | diff | comparison | revisions
src/protocols/yahoo/yahoochat.c file | annotate | diff | comparison | revisions
--- a/src/protocols/yahoo/yahoo_filexfer.c	Mon Feb 13 04:27:52 2006 +0000
+++ b/src/protocols/yahoo/yahoo_filexfer.c	Mon Feb 13 05:32:42 2006 +0000
@@ -39,7 +39,7 @@
 	GaimConnection *gc;
 	long expires;
 	gboolean started;
-	guchar *txbuf;
+	gchar *txbuf;
 	gsize txbuflen;
 	gsize txbuf_written;
 	guint tx_handler;
--- a/src/protocols/yahoo/yahoo_picture.c	Mon Feb 13 04:27:52 2006 +0000
+++ b/src/protocols/yahoo/yahoo_picture.c	Mon Feb 13 05:32:42 2006 +0000
@@ -369,7 +369,8 @@
 	gchar *size, *header;
 	guchar *pkt_buf;
 	const char *host;
-	gsize content_length, port, pkt_buf_len;
+	int port;
+	gsize content_length, pkt_buf_len;
 	GaimConnection *gc;
 	GaimAccount *account;
 	struct yahoo_data *yd;
--- a/src/protocols/yahoo/yahoochat.c	Mon Feb 13 04:27:52 2006 +0000
+++ b/src/protocols/yahoo/yahoochat.c	Mon Feb 13 05:32:42 2006 +0000
@@ -1080,7 +1080,7 @@
 struct yahoo_roomlist {
 	int fd;
 	int inpa;
-	guchar *txbuf;
+	gchar *txbuf;
 	gsize tx_written;
 	guchar *rxqueue;
 	int rxlen;

mercurial