diff options
author | Denys Vlasenko | 2009-08-30 16:23:29 +0200 |
---|---|---|
committer | Denys Vlasenko | 2009-08-30 16:23:29 +0200 |
commit | 22cbfbd9964321ace99d1a6a31ee1ba685202c55 (patch) | |
tree | 8872d73515198469ba3ce03a950bfbdc22a643cc /networking | |
parent | b9762922d1c5ab4022f35033c5efaa013dd2fdbf (diff) | |
download | busybox-22cbfbd9964321ace99d1a6a31ee1ba685202c55.zip busybox-22cbfbd9964321ace99d1a6a31ee1ba685202c55.tar.gz |
ethr-wake: can use ether_hostton on uclibc >= 0.9.30
By Leonid Lisovskiy (lly.dev AT gmail.com)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/ether-wake.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/networking/ether-wake.c b/networking/ether-wake.c index 882429d..59f4053 100644 --- a/networking/ether-wake.c +++ b/networking/ether-wake.c @@ -115,7 +115,10 @@ static void get_dest_addr(const char *hostid, struct ether_addr *eaddr) if (eap) { *eaddr = *eap; bb_debug_msg("The target station address is %s\n\n", ether_ntoa(eaddr)); -#if !defined(__UCLIBC__) +#if !defined(__UCLIBC_MAJOR__) \ + || __UCLIBC_MAJOR__ > 0 \ + || __UCLIBC_MINOR__ > 9 \ + || (__UCLIBC_MINOR__ == 9 && __UCLIBC_SUBLEVEL__ >= 30) } else if (ether_hostton(hostid, eaddr) == 0) { bb_debug_msg("Station address for hostname %s is %s\n\n", hostid, ether_ntoa(eaddr)); #endif |