diff options
| author | Ian Dowse <iedowse@FreeBSD.org> | 2001-09-29 11:37:13 +0000 |
|---|---|---|
| committer | Ian Dowse <iedowse@FreeBSD.org> | 2001-09-29 11:37:13 +0000 |
| commit | 7fe354ba91ed06975f91c1f2145d4a8050bd481a (patch) | |
| tree | 5400fa5975d5427f80bd2a3b7675089dba0f5bc3 /libexec/bootpd/getether.c | |
| parent | 625768e4a02547092c80972cd842d9d61fcefa3e (diff) | |
Notes
Diffstat (limited to 'libexec/bootpd/getether.c')
| -rw-r--r-- | libexec/bootpd/getether.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libexec/bootpd/getether.c b/libexec/bootpd/getether.c index 071b5fcd40b1..da582e98ebfe 100644 --- a/libexec/bootpd/getether.c +++ b/libexec/bootpd/getether.c @@ -19,6 +19,7 @@ #include <ctype.h> #include <paths.h> +#include <string.h> #include <syslog.h> #include "getether.h" @@ -117,13 +118,14 @@ getether(ifname, eap) #include <net/if_dl.h> #include <net/if_types.h> +int getether(ifname, eap) char *ifname; /* interface name from ifconfig structure */ char *eap; /* Ether address (output) */ { int fd, rc = -1; register int n; - struct ifreq ibuf[16], ifr; + struct ifreq ibuf[16]; struct ifconf ifc; register struct ifreq *ifrp, *ifend; |
