Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-6]: src/sys/netinet6 Pull up revision 1.58 (requested by itojun...
details: https://anonhg.NetBSD.org/src/rev/8386b2818f8f
branches: netbsd-1-6
changeset: 529144:8386b2818f8f
user: lukem <lukem%NetBSD.org@localhost>
date: Sun Oct 13 22:39:05 2002 +0000
description:
Pull up revision 1.58 (requested by itojun in ticket #855):
length field on PADN option, before jumbo payload option was wrong.
sync w/kame
diffstat:
sys/netinet6/ip6_output.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r cddd58569e00 -r 8386b2818f8f sys/netinet6/ip6_output.c
--- a/sys/netinet6/ip6_output.c Sun Oct 13 22:37:54 2002 +0000
+++ b/sys/netinet6/ip6_output.c Sun Oct 13 22:39:05 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ip6_output.c,v 1.44.4.1 2002/06/05 03:50:25 lukem Exp $ */
+/* $NetBSD: ip6_output.c,v 1.44.4.2 2002/10/13 22:39:05 lukem Exp $ */
/* $KAME: ip6_output.c,v 1.172 2001/03/25 09:55:56 itojun Exp $ */
/*
@@ -66,7 +66,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ip6_output.c,v 1.44.4.1 2002/06/05 03:50:25 lukem Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ip6_output.c,v 1.44.4.2 2002/10/13 22:39:05 lukem Exp $");
#include "opt_inet.h"
#include "opt_ipsec.h"
@@ -1153,7 +1153,7 @@
mopt->m_len += JUMBOOPTLEN;
}
optbuf[0] = IP6OPT_PADN;
- optbuf[1] = 1;
+ optbuf[1] = 0;
/*
* Adjust the header length according to the pad and
Home |
Main Index |
Thread Index |
Old Index