wok view busybox/stuff/busybox-1.11.0-dhcpc.u @ rev 5738
Add 'git-gui' package, v0.12.0.66.
Tested on Stable (built & installed) and Cooking (installed after upgrade) successfully.
Tested on Stable (built & installed) and Cooking (installed after upgrade) successfully.
author | Ben Arnold <ben@seawolfsanctuary.com> |
---|---|
date | Sat Jun 26 13:59:56 2010 +0100 (2010-06-26) |
parents | |
children |
line source
1 --- busybox-1.11.0/networking/udhcp/dhcpc.c
2 +++ busybox-1.11.0/networking/udhcp/dhcpc.c
3 @@ -356,7 +356,11 @@
4 if (packet_num == 0)
5 xid = random_xid();
7 - send_discover(xid, requested_ip); /* broadcast */
8 + if (send_discover(xid, requested_ip) < 0) { /* broadcast */
9 + bb_info_msg("No network, failing");
10 + retval = 1;
11 + goto ret;
12 + }
14 timeout = discover_timeout;
15 packet_num++;