aboutsummaryrefslogtreecommitdiff
path: root/libexec/bootpd/getether.c
diff options
context:
space:
mode:
authorPedro F. Giffuni <pfg@FreeBSD.org>2016-04-12 18:18:26 +0000
committerPedro F. Giffuni <pfg@FreeBSD.org>2016-04-12 18:18:26 +0000
commit07ee9f80d73118450375bd991c5cabb8c85bd7a2 (patch)
tree690cf5e9a3348058271e63fa10e01b22c4610056 /libexec/bootpd/getether.c
parentf459a8182474b23a7d4b456584ebb42699b6c74f (diff)
Notes
Diffstat (limited to 'libexec/bootpd/getether.c')
-rw-r--r--libexec/bootpd/getether.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/bootpd/getether.c b/libexec/bootpd/getether.c
index e4dc1b66b9e2..56b7c8ed3016 100644
--- a/libexec/bootpd/getether.c
+++ b/libexec/bootpd/getether.c
@@ -124,10 +124,10 @@ getether(ifname, eap)
char *eap; /* Ether address (output) */
{
int fd, rc = -1;
- register int n;
+ int n;
struct ifreq ibuf[16];
struct ifconf ifc;
- register struct ifreq *ifrp, *ifend;
+ struct ifreq *ifrp, *ifend;
/* Fetch the interface configuration */
fd = socket(AF_INET, SOCK_DGRAM, 0);