changeset 6745:57a24492434b

[gaim-migrate @ 7277] compile for windows.. committer: Tailor Script <tailor@pidgin.im>
author Herman Bloggs <hermanator12002@yahoo.com>
date Thu, 04 Sep 2003 23:08:57 +0000
parents a781689ca455
children c45c90c8ce8a
files src/Makefile.mingw src/dialogs.c src/protocols/yahoo/Makefile.mingw src/sslconn.c
diffstat 4 files changed, 10 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/src/Makefile.mingw	Thu Sep 04 21:48:15 2003 +0000
+++ b/src/Makefile.mingw	Thu Sep 04 23:08:57 2003 +0000
@@ -118,6 +118,7 @@
 			server.c \
 			signals.c \
 			sound.c \
+			sslconn.c \
 			status.c \
 			stock.c \
 			themes.c \
--- a/src/dialogs.c	Thu Sep 04 21:48:15 2003 +0000
+++ b/src/dialogs.c	Thu Sep 04 23:08:57 2003 +0000
@@ -443,9 +443,10 @@
 			while(bnode) {
 				GaimBuddy *b;
 				if(GAIM_BLIST_NODE_IS_BUDDY(bnode)) {
-					b = (GaimBuddy*)bnode;
+					GaimConversation *c;
+                                        b = (GaimBuddy*)bnode;
 					bnode = bnode->next;
-					GaimConversation *c = gaim_find_conversation_with_account(b->name, b->account);
+					c = gaim_find_conversation_with_account(b->name, b->account);
 					if(gaim_account_is_connected(b->account)) {
 						serv_remove_buddy(b->account->gc, b->name, g->name);
 						gaim_blist_remove_buddy(b);
--- a/src/protocols/yahoo/Makefile.mingw	Thu Sep 04 21:48:15 2003 +0000
+++ b/src/protocols/yahoo/Makefile.mingw	Thu Sep 04 23:08:57 2003 +0000
@@ -69,6 +69,7 @@
 ##
 
 C_SRC =			yahoo.c \
+			yahoochat.c \
 			crypt.c \
 			util.c
 
--- a/src/sslconn.c	Thu Sep 04 21:48:15 2003 +0000
+++ b/src/sslconn.c	Thu Sep 04 23:08:57 2003 +0000
@@ -122,7 +122,7 @@
 		gaim_input_remove(gsc->inpa);
 
 	if (ops != NULL && ops->close != NULL)
-		ops->close(gsc);
+		(ops->close)(gsc);
 
 	if (gsc->fd)
 		close(gsc->fd);
@@ -144,8 +144,8 @@
 
 	ops = gaim_ssl_get_ops();
 
-	if (ops != NULL && ops->read != NULL)
-		return ops->read(gsc, data, len);
+	if (ops != NULL && (ops->read) != NULL)
+		return (ops->read)(gsc, data, len);
 
 	return 0;
 }
@@ -161,8 +161,8 @@
 
 	ops = gaim_ssl_get_ops();
 
-	if (ops != NULL && ops->write != NULL)
-		return ops->write(gsc, data, len);
+	if (ops != NULL && (ops->write) != NULL)
+		return (ops->write)(gsc, data, len);
 
 	return 0;
 }