http://bugs.winehq.org/show_bug.cgi?id=17907 Matias Colli <matiasbsd(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |matiasbsd(a)gmail.com --- Comment #5 from Matias Colli <matiasbsd(a)gmail.com> 2012-05-02 20:52:10 CDT --- Better solutions that comment socket.c in Makefile.in is change the dlls/ws2_32/tests/sock.c as see bellow: - static int do_synchronous_recvfrom ( SOCKET s, char *buf, int buflen,int flags,struct sockaddr *from, socklen_t *fromlen, int recvlen ) + static int do_synchronous_recvfrom ( SOCKET s, char *buf, int buflen,int flags,struct sockaddr *from, int *fromlen, int recvlen ) and so: - socklen_t fromLen = sizeof(mem->addr); + int fromLen = sizeof(mem->addr); Matias Colli -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.