diff options
author | mdodd <mdodd@FreeBSD.org> | 1999-08-18 22:14:24 +0000 |
---|---|---|
committer | mdodd <mdodd@FreeBSD.org> | 1999-08-18 22:14:24 +0000 |
commit | 6fda6cde766cd7b3dfdc5ef969bdc0a4ddedb9a6 (patch) | |
tree | ba7e857301e62aea36e800d632e2f5a36e1b8182 /sys/dev/lnc/if_lnc.c | |
parent | a84a396b6b149988f12b678460517eae6b76638a (diff) | |
download | FreeBSD-src-6fda6cde766cd7b3dfdc5ef969bdc0a4ddedb9a6.zip FreeBSD-src-6fda6cde766cd7b3dfdc5ef969bdc0a4ddedb9a6.tar.gz |
Make these actually compile. I got a little delete happy pruning includes
and used 'command' instead of 'cmd' in a few cases. Also clear up some
unused variables.
Pointed out by: phk
Diffstat (limited to 'sys/dev/lnc/if_lnc.c')
-rw-r--r-- | sys/dev/lnc/if_lnc.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/lnc/if_lnc.c b/sys/dev/lnc/if_lnc.c index 2bdfce4..ee75beb 100644 --- a/sys/dev/lnc/if_lnc.c +++ b/sys/dev/lnc/if_lnc.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: if_lnc.c,v 1.62 1999/08/10 01:03:49 mdodd Exp $ + * $Id: if_lnc.c,v 1.63 1999/08/18 06:11:59 mdodd Exp $ */ /* @@ -80,10 +80,14 @@ #include <sys/socket.h> #include <sys/syslog.h> +#include <net/ethernet.h> #include <net/if.h> #include <net/if_dl.h> #include <net/if_types.h> +#include <netinet/in.h> +#include <netinet/if_ether.h> + #if NBPF > 0 #include <net/bpf.h> #endif @@ -1841,7 +1845,6 @@ lnc_ioctl(struct ifnet * ifp, u_long command, caddr_t data) { struct lnc_softc *sc = ifp->if_softc; - struct ifreq *ifr = (struct ifreq *) data; int s, error = 0; s = splimp(); |