# HG changeset patch # User Ethan Blanton # Date 1081385449 0 # Node ID 646ddb3a020b54bd8c101de5039f277e6e5eac50 # Parent ccd06daf65954f93a0af80af4c156d2dc6f58301 [gaim-migrate @ 9361] death to IPv6 in ft.c committer: Tailor Script diff -r ccd06daf6595 -r 646ddb3a020b src/protocols/oscar/ft.c --- a/src/protocols/oscar/ft.c Thu Apr 08 00:19:16 2004 +0000 +++ b/src/protocols/oscar/ft.c Thu Apr 08 00:50:49 2004 +0000 @@ -180,7 +180,7 @@ if ((acceptfd = accept(cur->fd, &addr, &addrlen)) == -1) return 0; /* not an error */ - if ((addr.sa_family != AF_INET) && (addr.sa_family != AF_INET6)) { /* just in case IPv6 really is happening */ + if (addr.sa_family != AF_INET) { close(acceptfd); aim_conn_close(cur); return -1;