diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2023-04-18 18:21:15 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2023-04-18 18:21:15 +0000 |
| commit | 8b356c888167dfc5f5783679d373555053982f02 (patch) | |
| tree | 300ff02be4256d808aaac0183e6e08fe30e58955 /libexec/bootpd/rtmsg.c | |
| parent | f6fd5356b3fc71467b9e110d683241f25424f97c (diff) | |
Diffstat (limited to 'libexec/bootpd/rtmsg.c')
| -rw-r--r-- | libexec/bootpd/rtmsg.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/libexec/bootpd/rtmsg.c b/libexec/bootpd/rtmsg.c index a689a5ac139f..c02735649236 100644 --- a/libexec/bootpd/rtmsg.c +++ b/libexec/bootpd/rtmsg.c @@ -115,10 +115,8 @@ static struct { /* * Set an individual arp entry */ -int bsd_arp_set(ia, eaddr, len) - struct in_addr *ia; - char *eaddr; - int len; +int +bsd_arp_set(struct in_addr *ia, char *eaddr, int len) { struct sockaddr_in *sin = &sin_m; struct sockaddr_dl *sdl; @@ -176,8 +174,8 @@ overwrite: } -static int rtmsg(cmd) - int cmd; +static int +rtmsg(int cmd) { static int seq; int rlen; |
