From: Mark D. <the...@us...> - 2003-10-27 02:17:55
|
Update of /cvsroot/gaim/gaim/src/protocols/oscar In directory sc8-pr-cvs1:/tmp/cvs-serv24876/src/protocols/oscar Modified Files: ft.c Log Message: Well, it won't make any thing worse, and it should let incoming or outgoing or something file transfers work on comps with ipv6 enabled in the kernel. Or something. Index: ft.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/oscar/ft.c,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -p -r1.41 -r1.42 --- ft.c 20 Jun 2003 04:16:22 -0000 1.41 +++ ft.c 27 Oct 2003 02:15:34 -0000 1.42 @@ -258,7 +258,7 @@ faim_export int aim_handlerendconnect(ai if ((acceptfd = accept(cur->fd, &addr, &addrlen)) == -1) return 0; /* not an error */ - if (addr.sa_family != AF_INET) { /* just in case IPv6 really is happening */ + if ((addr.sa_family != AF_INET) && (addr.sa_family != AF_INET6)) { /* just in case IPv6 really is happening */ close(acceptfd); aim_conn_close(cur); return -1; |