diff options
author | Kenji Aoyama <aoyama@cvs.openbsd.org> | 2018-03-12 12:47:36 +0000 |
---|---|---|
committer | Kenji Aoyama <aoyama@cvs.openbsd.org> | 2018-03-12 12:47:36 +0000 |
commit | b894abcea1779722ef8f12aff88adde28e0d55ea (patch) | |
tree | 64cfc39c6f6c79425f3aa6c30027af738d724e04 /sys/net/if_gre.c | |
parent | b94f49f6d4beac1c1821a49231551c57845e4e75 (diff) |
Delete unused variable.
ok jsg@
Diffstat (limited to 'sys/net/if_gre.c')
-rw-r--r-- | sys/net/if_gre.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/net/if_gre.c b/sys/net/if_gre.c index bb9f9cd93e4..0bed1557630 100644 --- a/sys/net/if_gre.c +++ b/sys/net/if_gre.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_gre.c,v 1.121 2018/03/12 06:28:02 dlg Exp $ */ +/* $OpenBSD: if_gre.c,v 1.122 2018/03/12 12:47:35 aoyama Exp $ */ /* $NetBSD: if_gre.c,v 1.9 1999/10/25 19:18:11 drochner Exp $ */ /* @@ -1261,7 +1261,6 @@ nvgre_input(const struct gre_tunnel *key, struct mbuf *m, int hlen) { struct nvgre_softc *sc; struct mbuf_list ml = MBUF_LIST_INITIALIZER(); - extern int ticks; if (ISSET(m->m_flags, M_MCAST|M_BCAST)) sc = nvgre_mcast_find(key, m->m_pkthdr.ph_ifidx); |