diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 1999-12-08 06:06:44 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 1999-12-08 06:06:44 +0000 |
commit | c7895ae92a849e7c3c41f1849e6def80b7ecda5b (patch) | |
tree | 84a47df0198719a6657c0a69aa5390b7f9d47fd0 /sys/netinet | |
parent | 5240cc7ce56e1804e13a77d103c0dbafaf7760c3 (diff) |
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: |