diff options
author | suz <suz@FreeBSD.org> | 2003-04-28 08:21:57 +0000 |
---|---|---|
committer | suz <suz@FreeBSD.org> | 2003-04-28 08:21:57 +0000 |
commit | 894378052ae34328c141dc88a448cf9f822ea4f1 (patch) | |
tree | 7ba6c0399be2824684e5281ab97b2530e84baaf8 /sys/netinet6 | |
parent | e4d0be5799de5eb1f1f39497ae6f59ba0be217f7 (diff) | |
download | FreeBSD-src-894378052ae34328c141dc88a448cf9f822ea4f1.zip FreeBSD-src-894378052ae34328c141dc88a448cf9f822ea4f1.tar.gz |
sync with the latest KAME (just a cosmetic change)
MFC after: 1 day
Diffstat (limited to 'sys/netinet6')
-rw-r--r-- | sys/netinet6/ipcomp_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/ipcomp_output.c b/sys/netinet6/ipcomp_output.c index 71e5755..f07e06c 100644 --- a/sys/netinet6/ipcomp_output.c +++ b/sys/netinet6/ipcomp_output.c @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* $KAME: ipcomp_output.c,v 1.24 2001/07/26 06:53:18 jinmei Exp $ */ +/* $KAME: ipcomp_output.c,v 1.25 2002/06/09 14:44:00 itojun Exp $ */ /* * Copyright (C) 1999 WIDE Project. @@ -296,7 +296,7 @@ ipcomp_output(m, nexthdrp, md, isr, af) m->m_pkthdr.len += complen; ipcomp = mtod(md, struct ipcomp *); } - + bzero(ipcomp, sizeof(*ipcomp)); ipcomp->comp_nxt = *nexthdrp; *nexthdrp = IPPROTO_IPCOMP; |