diff options
author | 1999-12-08 06:06:43 +0000 | |
---|---|---|
committer | 1999-12-08 06:06:43 +0000 | |
commit | 9c646f5e7ec648ea5efa2bb5353d18c5a53079f8 (patch) | |
tree | 087aa3ac8890868776f9e1a41dce34f753da6c46 /sys/netinet | |
parent | fix field name (ip6_hdr->ip6_src). use IN6_ARE_ADDR_EQUAL for comparison. (diff) | |
download | wireguard-openbsd-9c646f5e7ec648ea5efa2bb5353d18c5a53079f8.tar.xz wireguard-openbsd-9c646f5e7ec648ea5efa2bb5353d18c5a53079f8.zip |
comment out call to inet_ntoa6() as we don't have the code yet.
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/ip_ipsp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/ip_ipsp.c b/sys/netinet/ip_ipsp.c index 704203fba1f..9ba1f87556e 100644 --- a/sys/netinet/ip_ipsp.c +++ b/sys/netinet/ip_ipsp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipsp.c,v 1.58 1999/12/06 07:14:36 angelos Exp $ */ +/* $OpenBSD: ip_ipsp.c,v 1.59 1999/12/08 06:06:43 itojun Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -1486,9 +1486,9 @@ ipsp_address(union sockaddr_union sa) case AF_INET: return inet_ntoa4(sa.sin.sin_addr); -#if INET6 +#if 0 /*INET6*/ case AF_INET6: - return inet_ntoa6(sa.sin6.s6_addr); + return inet_ntoa6(sa.sin6.sin6_addr); #endif /* INET6 */ default: |