1 Index: busybox-1.4.2/networking/udhcp/clientpacket.c
2 ===================================================================
3 --- busybox-1.4.2.orig/networking/udhcp/clientpacket.c 2007-06-04 13:21:32.270070872 +0200
4 +++ busybox-1.4.2/networking/udhcp/clientpacket.c 2007-06-04 13:21:33.813836184 +0200
6 int send_discover(unsigned long xid, unsigned long 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);