commit | 4e864a36b611f56c6b347be1dace4e5e805a3eb8 | [log] [tgz] |
---|---|---|
author | Russ Dill <Russ.Dill@asu.edu> | Thu Dec 18 22:25:38 2003 +0000 |
committer | Russ Dill <Russ.Dill@asu.edu> | Thu Dec 18 22:25:38 2003 +0000 |
tree | 6582084290de4bead010f5fb8ff0a0a6d2b573fd | |
parent | e30495654d8bb38f7ea234d9d0ab0929525501e3 [diff] [blame] |
Finish remerging busybox udhcp and udhcp. Some cleanups as well.
diff --git a/networking/udhcp/arpping.c b/networking/udhcp/arpping.c index e20395a..363408d 100644 --- a/networking/udhcp/arpping.c +++ b/networking/udhcp/arpping.c
@@ -44,7 +44,11 @@ if ((s = socket (PF_PACKET, SOCK_PACKET, htons(ETH_P_ARP))) == -1) { +#ifdef IN_BUSYBOX LOG(LOG_ERR, bb_msg_can_not_create_raw_socket); +#else + LOG(LOG_ERR, "Could not open raw socket"); +#endif return -1; }