diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-09-11 03:27:31 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-09-11 03:27:31 +0000 |
commit | 30c7cf95db618593b332d32dea51d0dd6075a296 (patch) | |
tree | a6b0df692d12b08c0b2cd71bd26b9603c3915d0e /sys/netinet6/ip6_input.c | |
parent | 054578cdcb9492f885869f1af32b3b1ba17d007d (diff) |
fix pointer signedness mixup. sync w/kame
Diffstat (limited to 'sys/netinet6/ip6_input.c')
-rw-r--r-- | sys/netinet6/ip6_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/ip6_input.c b/sys/netinet6/ip6_input.c index a26b52e9c22..1dee83c9bcd 100644 --- a/sys/netinet6/ip6_input.c +++ b/sys/netinet6/ip6_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip6_input.c,v 1.45 2002/09/11 03:15:36 itojun Exp $ */ +/* $OpenBSD: ip6_input.c,v 1.46 2002/09/11 03:27:30 itojun Exp $ */ /* $KAME: ip6_input.c,v 1.188 2001/03/29 05:34:31 itojun Exp $ */ /* @@ -1241,7 +1241,7 @@ ip6_pullexthdr(m, off, nxt) * carefully. Moreover, it will not be used in the near future when * we develop `neater' mechanism to process extension headers. */ -char * +u_int8_t * ip6_get_prevhdr(m, off) struct mbuf *m; int off; |