diff options
author | phk <phk@FreeBSD.org> | 1995-10-29 15:33:36 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1995-10-29 15:33:36 +0000 |
commit | 88d6fa4d4abcae38b7ea2520fe4f00203d58d677 (patch) | |
tree | 5994df578f3d766b837fe6548617062ae4661aac /sys/net/if_tun.c | |
parent | cc116c7cb7917f4b59507c90c1b0c2a45b1f6364 (diff) | |
download | FreeBSD-src-88d6fa4d4abcae38b7ea2520fe4f00203d58d677.zip FreeBSD-src-88d6fa4d4abcae38b7ea2520fe4f00203d58d677.tar.gz |
Second batch of cleanup changes.
This time mostly making a lot of things static and some unused
variables here and there.
Diffstat (limited to 'sys/net/if_tun.c')
-rw-r--r-- | sys/net/if_tun.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/net/if_tun.c b/sys/net/if_tun.c index 3e3d442..b233039 100644 --- a/sys/net/if_tun.c +++ b/sys/net/if_tun.c @@ -96,7 +96,6 @@ tunattach(udata) { register int i; struct ifnet *ifp; - struct sockaddr_in *sin; /* * In case we are an LKM, set up device switch. @@ -239,7 +238,6 @@ tunifioctl(ifp, cmd, data) caddr_t data; { register struct ifreq *ifr = (struct ifreq *)data; - struct tun_softc *tp = &tunctl[ifp->if_unit]; int error = 0, s; s = splimp(); |