Mercurial > pidgin.yaz
diff src/network.c @ 8840:01c3db200c8f
[gaim-migrate @ 9607]
Some good rendezvous fixes. Now if I could just find out why iTunes
complains that it can't access my mp3 server when I sign on with Gaim...
And 0 is a valid file descriptor.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Wed, 28 Apr 2004 04:38:12 +0000 |
parents | 518455386538 |
children | e40f9afd420e |
line wrap: on
line diff
--- a/src/network.c Wed Apr 28 03:57:42 2004 +0000 +++ b/src/network.c Wed Apr 28 04:38:12 2004 +0000 @@ -83,7 +83,7 @@ static char ip[16]; const char *tmp; - g_return_val_if_fail(fd > 0, NULL); + g_return_val_if_fail(fd >= 0, NULL); len = sizeof(addr); if (getsockname(fd, (struct sockaddr *) &addr, &len) == -1) { @@ -106,7 +106,7 @@ static char ip[46]; const char *tmp = NULL; - if (fd != -1) + if (fd >= 0) tmp = gaim_network_get_local_ip_from_fd(fd); if (tmp)