svn commit: r252614 - head/sbin/dhclient

Pawel Jakub Dawidek pjd at FreeBSD.org
Wed Jul 3 21:45:30 UTC 2013


Author: pjd
Date: Wed Jul  3 21:45:29 2013
New Revision: 252614
URL: http://svnweb.freebsd.org/changeset/base/252614

Log:
  MFp4 @229470:
  
  Remove unused argument from send_packet().
  
  Reviewed by:	brooks
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sbin/dhclient/bpf.c
  head/sbin/dhclient/dhclient.c
  head/sbin/dhclient/dhcpd.h

Modified: head/sbin/dhclient/bpf.c
==============================================================================
--- head/sbin/dhclient/bpf.c	Wed Jul  3 21:43:41 2013	(r252613)
+++ head/sbin/dhclient/bpf.c	Wed Jul  3 21:45:29 2013	(r252614)
@@ -251,8 +251,7 @@ if_register_receive(struct interface_inf
 
 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 *inter
 
 	/* 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);
 

Modified: head/sbin/dhclient/dhclient.c
==============================================================================
--- head/sbin/dhclient/dhclient.c	Wed Jul  3 21:43:41 2013	(r252613)
+++ head/sbin/dhclient/dhclient.c	Wed Jul  3 21:45:29 2013	(r252614)
@@ -1232,7 +1232,7 @@ again:
 
 	/* Send out a packet. */
 	(void)send_packet(ip, &ip->client->packet, ip->client->packet_length,
-	    inaddr_any, &sockaddr_broadcast, NULL);
+	    inaddr_any, &sockaddr_broadcast);
 
 	add_timeout(cur_time + ip->client->interval, send_discover, ip);
 }
@@ -1463,7 +1463,7 @@ cancel:
 
 	/* Send out a packet. */
 	(void) send_packet(ip, &ip->client->packet, ip->client->packet_length,
-	    from, &destination, NULL);
+	    from, &destination);
 
 	add_timeout(cur_time + ip->client->interval, send_request, ip);
 }
@@ -1479,7 +1479,7 @@ send_decline(void *ipp)
 
 	/* Send out a packet. */
 	(void) send_packet(ip, &ip->client->packet, ip->client->packet_length,
-	    inaddr_any, &sockaddr_broadcast, NULL);
+	    inaddr_any, &sockaddr_broadcast);
 }
 
 void

Modified: head/sbin/dhclient/dhcpd.h
==============================================================================
--- head/sbin/dhclient/dhcpd.h	Wed Jul  3 21:43:41 2013	(r252613)
+++ head/sbin/dhclient/dhcpd.h	Wed Jul  3 21:45:29 2013	(r252614)
@@ -301,7 +301,7 @@ int if_register_bpf(struct interface_inf
 void if_register_send(struct interface_info *);
 void if_register_receive(struct interface_info *);
 ssize_t send_packet(struct interface_info *, struct dhcp_packet *, size_t,
-    struct in_addr, struct sockaddr_in *, struct hardware *);
+    struct in_addr, struct sockaddr_in *);
 ssize_t receive_packet(struct interface_info *, unsigned char *, size_t,
     struct sockaddr_in *, struct hardware *);
 


More information about the svn-src-all mailing list