diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-09-06 19:52:31 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-09-06 19:52:31 +0000 |
commit | eaeb5fb5039b6d96bf2799770a0bf6cf06f1fbfc (patch) | |
tree | a5792cf8425aa61f5b5850480d549ceb54de9166 /usr.sbin/bootpd/getether.c | |
parent | 2838082537c9c9631397a803467b78e48774a196 (diff) |
socklen_t use; pvalchev ok
Diffstat (limited to 'usr.sbin/bootpd/getether.c')
-rw-r--r-- | usr.sbin/bootpd/getether.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/bootpd/getether.c b/usr.sbin/bootpd/getether.c index 34f172800b5..e47664c9d24 100644 --- a/usr.sbin/bootpd/getether.c +++ b/usr.sbin/bootpd/getether.c @@ -33,7 +33,8 @@ #include <net/if.h> /* struct ifdevea */ getether(ifname, eap) - char *ifname, *eap; + char *ifname; + u_char *eap; { int rc = -1; int fd; |