summaryrefslogtreecommitdiff
path: root/canohost.c
diff options
context:
space:
mode:
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