summaryrefslogtreecommitdiff
path: root/sys/netinet6
diff options
context:
space:
mode:
authorJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2002-08-17 22:19:29 +0000
committerJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2002-08-17 22:19:29 +0000
commitaaccdca47a058c200f2afff68b3ae39a04aebc77 (patch)
treecd221d7482dbfebf593a56f0936870a03edd5356 /sys/netinet6
parente892c1d72896557d3d974f959e52adc47da06674 (diff)
set default value for use_deprecated to 0, to avoid consequences with ftpd.
Diffstat (limited to 'sys/netinet6')
-rw-r--r--sys/netinet6/in6_proto.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/in6_proto.c b/sys/netinet6/in6_proto.c
index 3f556e54f2e..b0466741fec 100644
--- a/sys/netinet6/in6_proto.c
+++ b/sys/netinet6/in6_proto.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: in6_proto.c,v 1.37 2002/06/09 14:38:39 itojun Exp $ */
+/* $OpenBSD: in6_proto.c,v 1.38 2002/08/17 22:19:28 itojun Exp $ */
/* $KAME: in6_proto.c,v 1.66 2000/10/10 15:35:47 itojun Exp $ */
/*
@@ -258,7 +258,7 @@ int ip6_hdrnestlimit = 50; /* appropriate? */
int ip6_dad_count = 1; /* DupAddrDetectionTransmits */
u_int32_t ip6_flow_seq;
int ip6_auto_flowlabel = 1;
-int ip6_use_deprecated = 1; /* allow deprecated addr (RFC2462 5.5.4) */
+int ip6_use_deprecated = 0; /* allow deprecated addr (RFC2462 5.5.4) */
int ip6_rr_prune = 5; /* router renumbering prefix
* walk list every 5 sec. */
const int ip6_v6only = 1;