From 7a7976652e141ed8f8afc8b1f2ffa7ac89ac10e5 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Tue, 24 Jun 2014 18:55:01 -0600 Subject: [PATCH] Clean up all UDP-related naming --- netutils/dhcpc/dhcpc.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/netutils/dhcpc/dhcpc.c b/netutils/dhcpc/dhcpc.c index fab4a3bcf..5410e6ad9 100644 --- a/netutils/dhcpc/dhcpc.c +++ b/netutils/dhcpc/dhcpc.c @@ -122,13 +122,13 @@ struct dhcp_msg struct dhcpc_state_s { - struct uip_udp_conn *ds_conn; - const void *ds_macaddr; - int ds_maclen; - int sockfd; - struct in_addr ipaddr; - struct in_addr serverid; - struct dhcp_msg packet; + struct udp_conn_s *ds_conn; + const void *ds_macaddr; + int ds_maclen; + int sockfd; + struct in_addr ipaddr; + struct in_addr serverid; + struct dhcp_msg packet; }; /****************************************************************************