summaryrefslogtreecommitdiffstats
path: root/sbin/dhclient/bpf.c
diff options
context:
space:
mode:
authorpjd <pjd@FreeBSD.org>2013-07-03 21:45:29 +0000
committerpjd <pjd@FreeBSD.org>2013-07-03 21:45:29 +0000
commite5e94b722420572a67052e000b5342a26cb616a4 (patch)
tree86909d7712bc6e7615c9f0a3c85d45d2ae22b0be /sbin/dhclient/bpf.c
parent52ee09ff73267443a51540ba46a21d07f6b50fc7 (diff)
downloadFreeBSD-src-e5e94b722420572a67052e000b5342a26cb616a4.zip
FreeBSD-src-e5e94b722420572a67052e000b5342a26cb616a4.tar.gz
MFp4 @229470:
Remove unused argument from send_packet(). Reviewed by: brooks Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'sbin/dhclient/bpf.c')
-rw-r--r--sbin/dhclient/bpf.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sbin/dhclient/bpf.c b/sbin/dhclient/bpf.c
index 9f8e45f..4dfe1f0 100644
--- a/sbin/dhclient/bpf.c
+++ b/sbin/dhclient/bpf.c
@@ -251,8 +251,7 @@ if_register_receive(struct interface_info *info)
ssize_t
send_packet(struct interface_info *interface, struct dhcp_packet *raw,
- size_t len, struct in_addr from, struct sockaddr_in *to,
- struct hardware *hto)
+ size_t len, struct in_addr from, struct sockaddr_in *to)
{
unsigned char buf[256];
struct iovec iov[2];
@@ -261,7 +260,7 @@ send_packet(struct interface_info *interface, struct dhcp_packet *raw,
/* Assemble the headers... */
if (to->sin_addr.s_addr == INADDR_BROADCAST)
- assemble_hw_header(interface, buf, &bufp, hto);
+ assemble_hw_header(interface, buf, &bufp, NULL);
assemble_udp_ip_header(buf, &bufp, from.s_addr,
to->sin_addr.s_addr, to->sin_port, (unsigned char *)raw, len);
OpenPOWER on IntegriCloud