summaryrefslogtreecommitdiff
path: root/canohost.c
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 /canohost.c
parentc4c647fb9465ae98816c5a6a1a6d9dae0e383e9a (diff)
Avoid breakage on systems lacking IPv6 headers
Diffstat (limited to 'canohost.c')
-rw-r--r--canohost.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/canohost.c b/canohost.c
index e61628b77..edfaa94e1 100644
--- a/canohost.c
+++ b/canohost.c
@@ -14,7 +14,7 @@
14 */ 14 */
15 15
16#include "includes.h" 16#include "includes.h"
17RCSID("$Id: canohost.c,v 1.5 1999/12/13 23:47:15 damien Exp $"); 17RCSID("$Id: canohost.c,v 1.6 1999/12/18 09:57:40 damien Exp $");
18 18
19#include "packet.h" 19#include "packet.h"
20#include "xmalloc.h" 20#include "xmalloc.h"
@@ -160,8 +160,9 @@ peer_connection_is_on_socket()
160 memset(&from, 0, sizeof(from)); 160 memset(&from, 0, sizeof(from));
161 if (getpeername(in, (struct sockaddr *) & from, &fromlen) < 0) 161 if (getpeername(in, (struct sockaddr *) & from, &fromlen) < 0)
162 return 0; 162 return 0;
163 if (from.sin_family != AF_INET && from.sin_family != AF_INET6) 163 if (from.sin_family != AF_INET)
164 return 0; 164 return 0;
165
165 return 1; 166 return 1;
166} 167}
167 168