diff options
| author | Matthew N. Dodd <mdodd@FreeBSD.org> | 1999-08-18 22:14:24 +0000 |
|---|---|---|
| committer | Matthew N. Dodd <mdodd@FreeBSD.org> | 1999-08-18 22:14:24 +0000 |
| commit | 4b31e9d6a74391876f6e2c83d241491224e49193 (patch) | |
| tree | 6edae49092709c4d1a11ba6c4dc817afbb1104c6 /sys/dev/wl | |
| parent | f04626ff2274035a25143b49034557db4a35dbf7 (diff) | |
Notes
Diffstat (limited to 'sys/dev/wl')
| -rw-r--r-- | sys/dev/wl/if_wl.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/wl/if_wl.c b/sys/dev/wl/if_wl.c index 93d4bd54a7ff..2c37caf84774 100644 --- a/sys/dev/wl/if_wl.c +++ b/sys/dev/wl/if_wl.c @@ -1,4 +1,4 @@ -/* $Id: if_wl.c,v 1.22 1999/07/06 19:22:54 des Exp $ */ +/* $Id: if_wl.c,v 1.23 1999/08/18 06:11:59 mdodd Exp $ */ /* * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -204,6 +204,7 @@ WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include <sys/kernel.h> #include <sys/sysctl.h> +#include <net/ethernet.h> #include <net/if.h> #include <net/if_dl.h> @@ -1181,7 +1182,7 @@ wlioctl(struct ifnet *ifp, u_long cmd, caddr_t data) case SIOCSIFADDR: case SIOCGIFADDR: case SIOCSIFMTU: - error = ether_ioctl(ifp, command, data); + error = ether_ioctl(ifp, cmd, data); break; case SIOCSIFFLAGS: |
