summaryrefslogtreecommitdiff
path: root/sys/net/if_gif.c
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2007-02-10 15:34:23 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2007-02-10 15:34:23 +0000
commit42462f3a4b95f56870005e9f46c22a32a9278d5b (patch)
tree5e947939e99718fe660b77b5ac5fbafce19cf528 /sys/net/if_gif.c
parent3e9033756c2f1ae422c059eb8554e36d5655287c (diff)
Cleanup, kill dead code and unused arguments. Mostly stuff that is computed
and passed around but never used. OK mglocker@
Diffstat (limited to 'sys/net/if_gif.c')
-rw-r--r--sys/net/if_gif.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/if_gif.c b/sys/net/if_gif.c
index 1a10f648e35..aba00a8e73a 100644
--- a/sys/net/if_gif.c
+++ b/sys/net/if_gif.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_gif.c,v 1.39 2007/01/08 18:09:24 michele Exp $ */
+/* $OpenBSD: if_gif.c,v 1.40 2007/02/10 15:34:22 claudio Exp $ */
/* $KAME: if_gif.c,v 1.43 2001/02/20 08:51:07 itojun Exp $ */
/*
@@ -241,12 +241,12 @@ gif_output(ifp, m, dst, rt)
switch (sc->gif_psrc->sa_family) {
#ifdef INET
case AF_INET:
- error = in_gif_output(ifp, dst->sa_family, m, rt);
+ error = in_gif_output(ifp, dst->sa_family, m);
break;
#endif
#ifdef INET6
case AF_INET6:
- error = in6_gif_output(ifp, dst->sa_family, m, rt);
+ error = in6_gif_output(ifp, dst->sa_family, m);
break;
#endif
default: