Mercurial > pidgin.yaz
changeset 8610:646ddb3a020b
[gaim-migrate @ 9361]
death to IPv6 in ft.c
committer: Tailor Script <tailor@pidgin.im>
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Thu, 08 Apr 2004 00:50:49 +0000 |
parents | ccd06daf6595 |
children | 05bc76d8e1b7 |
files | src/protocols/oscar/ft.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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;