summaryrefslogtreecommitdiffstats
path: root/libexec/bootpd/trygetea.c
diff options
context:
space:
mode:
authorpst <pst@FreeBSD.org>1996-01-23 01:35:04 +0000
committerpst <pst@FreeBSD.org>1996-01-23 01:35:04 +0000
commitaccc2aa38fbbf04568a6d3941e897dc34aee7930 (patch)
tree9d4d2f644df6a63fbb148e0952fdf7f3ae9aebf5 /libexec/bootpd/trygetea.c
parent6b42e1664561f04b1d3f497ecd5ccad48fd8c3b4 (diff)
downloadFreeBSD-src-accc2aa38fbbf04568a6d3941e897dc34aee7930.zip
FreeBSD-src-accc2aa38fbbf04568a6d3941e897dc34aee7930.tar.gz
Import bootpd-2.4.3 from ftp.mc.com
Diffstat (limited to 'libexec/bootpd/trygetea.c')
-rw-r--r--libexec/bootpd/trygetea.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/libexec/bootpd/trygetea.c b/libexec/bootpd/trygetea.c
index e9314ae..5510995 100644
--- a/libexec/bootpd/trygetea.c
+++ b/libexec/bootpd/trygetea.c
@@ -9,6 +9,9 @@
#include <sys/sockio.h>
#endif
+#ifdef _AIX32
+#include <sys/time.h> /* for struct timeval in net/if.h */
+#endif
#include <net/if.h> /* for struct ifreq */
#include <netinet/in.h>
#include <arpa/inet.h> /* inet_ntoa */
@@ -18,10 +21,14 @@
#include <ctype.h>
#include <errno.h>
+#include "getether.h"
+
int debug = 0;
char *progname;
+void
main(argc, argv)
+ int argc;
char **argv;
{
u_char ea[16]; /* Ethernet address */
@@ -33,7 +40,7 @@ main(argc, argv)
printf("need interface name\n");
exit(1);
}
- if ((i = getether(argv[1], ea)) < 0) {
+ if ((i = getether(argv[1], (char*)ea)) < 0) {
printf("Could not get Ethernet address (rc=%d)\n", i);
exit(1);
}
OpenPOWER on IntegriCloud