diff options
author | 2007-02-10 15:34:22 +0000 | |
---|---|---|
committer | 2007-02-10 15:34:22 +0000 | |
commit | 0085a3a22fc6667d6b7656889d4346d5179bd165 (patch) | |
tree | 3c3d7cacacc911730fc037c03b9485c87471576e /sys/netinet/ip_ipip.c | |
parent | Remove entry for mx driver which was removed a bit over 7 years ago. (diff) | |
download | wireguard-openbsd-0085a3a22fc6667d6b7656889d4346d5179bd165.tar.xz wireguard-openbsd-0085a3a22fc6667d6b7656889d4346d5179bd165.zip |
Cleanup, kill dead code and unused arguments. Mostly stuff that is computed
and passed around but never used. OK mglocker@
Diffstat (limited to 'sys/netinet/ip_ipip.c')
-rw-r--r-- | sys/netinet/ip_ipip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/ip_ipip.c b/sys/netinet/ip_ipip.c index 427f4214f1a..4b9fae0b5cb 100644 --- a/sys/netinet/ip_ipip.c +++ b/sys/netinet/ip_ipip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipip.c,v 1.38 2006/12/13 09:01:59 itojun Exp $ */ +/* $OpenBSD: ip_ipip.c,v 1.39 2007/02/10 15:34:22 claudio Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and @@ -374,8 +374,8 @@ ipip_input(struct mbuf *m, int iphlen, struct ifnet *gifp) } int -ipip_output(struct mbuf *m, struct tdb *tdb, struct mbuf **mp, int skip, - int protoff) +ipip_output(struct mbuf *m, struct tdb *tdb, struct mbuf **mp, int dummy, + int dummy2) { u_int8_t tp, otos; |