1 Index: busybox-1.7.2/networking/udhcp/clientpacket.c
2 ===================================================================
3 --- busybox-1.7.2.orig/networking/udhcp/clientpacket.c 2007-10-30 15:35:00.000000000 -0500
4 +++ busybox-1.7.2/networking/udhcp/clientpacket.c 2007-10-30 15:35:02.000000000 -0500
6 int send_discover(uint32_t xid, uint32_t requested)
8 struct dhcpMessage packet;
11 init_packet(&packet, DHCPDISCOVER);
14 add_simple_option(packet.options, DHCP_REQUESTED_IP, requested);
16 add_requests(&packet);
17 - bb_info_msg("Sending discover...");
19 + bb_info_msg("Sending discover...");
20 return udhcp_raw_packet(&packet, INADDR_ANY, CLIENT_PORT, INADDR_BROADCAST,
21 SERVER_PORT, MAC_BCAST_ADDR, client_config.ifindex);