summaryrefslogtreecommitdiff
path: root/sys/netinet6
diff options
context:
space:
mode:
authorJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2001-07-27 15:48:39 +0000
committerJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2001-07-27 15:48:39 +0000
commit5782dfd1a8b36a27deb2bd3798e6d6a9afe9a7a1 (patch)
treec2e0ac3c8c5fc71c9f37c6b9d4eda10d41ea7c30 /sys/netinet6
parent94e300c7c1502fce5abee5638ced501881fa0d9c (diff)
variable name "gif" is way too generic - use "gif_softc". sync with kame
Diffstat (limited to 'sys/netinet6')
-rw-r--r--sys/netinet6/in6_gif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/in6_gif.c b/sys/netinet6/in6_gif.c
index a9898012189..591a8c45aa9 100644
--- a/sys/netinet6/in6_gif.c
+++ b/sys/netinet6/in6_gif.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: in6_gif.c,v 1.16 2001/06/09 06:43:37 angelos Exp $ */
+/* $OpenBSD: in6_gif.c,v 1.17 2001/07/27 15:48:38 itojun Exp $ */
/* $KAME: in6_gif.c,v 1.43 2001/01/22 07:27:17 itojun Exp $ */
/*
@@ -218,7 +218,7 @@ int in6_gif_input(mp, offp, proto)
ip6 = mtod(m, struct ip6_hdr *);
#define satoin6(sa) (((struct sockaddr_in6 *)(sa))->sin6_addr)
- for (i = 0, sc = gif; i < ngif; i++, sc++) {
+ for (i = 0, sc = gif_softc; i < ngif; i++, sc++) {
if (sc->gif_psrc == NULL ||
sc->gif_pdst == NULL ||
sc->gif_psrc->sa_family != AF_INET6 ||