ayttm-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Ayttm-commits] CVS: ayttm/modules/yahoo2 yahoo.c,1.58,1.59


From: Edward L. Haletky <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm/modules/yahoo2 yahoo.c,1.58,1.59
Date: Fri, 28 Mar 2003 14:24:12 -0500

Update of /cvsroot/ayttm/ayttm/modules/yahoo2
In directory subversions:/tmp/cvs-serv24456/modules/yahoo2

Modified Files:
        yahoo.c 
Log Message:


Updates for MINGW32 GUI issues
Updates to remove Yahoo async connect specifically for MINGW32 only


Index: yahoo.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/modules/yahoo2/yahoo.c,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- yahoo.c     26 Mar 2003 13:46:07 -0000      1.58
+++ yahoo.c     28 Mar 2003 19:24:10 -0000      1.59
@@ -2314,10 +2314,14 @@
 
 static int ext_yahoo_connect(int id, char *host, int port)
 {
+#ifdef __MINGW32__
+       return ay_socket_new(host,port);
+#else
        eb_local_account * ela = yahoo_find_local_account_by_id(id);
        ay_socket_new_async(host, port, _yahoo_connected, ela);
        errno = EINPROGRESS;
        return -1;
+#endif
 }
 
 static int ext_yahoo_connect_sync(char *host, int port)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]