1 Index: busybox-1.4.2/networking/udhcp/dhcpc.c
2 ===================================================================
3 --- busybox-1.4.2.orig/networking/udhcp/dhcpc.c 2007-06-04 13:21:32.319063424 +0200
4 +++ busybox-1.4.2/networking/udhcp/dhcpc.c 2007-06-04 13:21:33.430894400 +0200
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 */