summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-12-18 20:57:40 +1100
committerDamien Miller <djm@mindrot.org>1999-12-18 20:57:40 +1100
commitfdb7caf293e860fda343f9cc98ff3342ed997b73 (patch)
tree81cdfa33653f0ff28f85b0a0b8a00235990206de
parentc4c647fb9465ae98816c5a6a1a6d9dae0e383e9a (diff)
Avoid breakage on systems lacking IPv6 headers
-rw-r--r--ChangeLog1
-rw-r--r--canohost.c5
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index b89d475b..b68e22ed 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
19991218
- Redhat init script patch from Chun-Chung Chen
<cjj@u.washington.edu>
+ - Avoid breakage on systems without IPv6 headers
19991216
- Makefile changes for Solaris from Peter Kocks
diff --git a/canohost.c b/canohost.c
index e61628b7..edfaa94e 100644
--- a/canohost.c
+++ b/canohost.c
@@ -14,7 +14,7 @@
*/
#include "includes.h"
-RCSID("$Id: canohost.c,v 1.5 1999/12/13 23:47:15 damien Exp $");
+RCSID("$Id: canohost.c,v 1.6 1999/12/18 09:57:40 damien Exp $");
#include "packet.h"
#include "xmalloc.h"
@@ -160,8 +160,9 @@ peer_connection_is_on_socket()
memset(&from, 0, sizeof(from));
if (getpeername(in, (struct sockaddr *) & from, &fromlen) < 0)
return 0;
- if (from.sin_family != AF_INET && from.sin_family != AF_INET6)
+ if (from.sin_family != AF_INET)
return 0;
+
return 1;
}