1 Index: busybox-1.7.2/networking/udhcp/dhcpc.c
2 ===================================================================
3 --- busybox-1.7.2.orig/networking/udhcp/dhcpc.c 2007-10-30 15:35:00.000000000 -0500
4 +++ busybox-1.7.2/networking/udhcp/dhcpc.c 2007-10-30 15:35:01.000000000 -0500
6 /* timeout dropped to zero */
9 - if (packet_num < client_config.retries) {
10 + if (!client_config.retries || (packet_num < client_config.retries)) {
18 - if (packet_num < client_config.retries) {
19 + if (!client_config.retries || (packet_num < client_config.retries)) {
20 /* send request packet */
21 if (state == RENEW_REQUESTED)
22 send_renew(xid, server_addr, requested_ip); /* unicast */