diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-22 22:45:27 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-22 22:45:27 +0000 |
commit | 9adc6ced4fcab4d8a068874c55d5f563ce9e62f9 (patch) | |
tree | 586266ceaeff8f26c8f08b24b2ad0df1630097e6 /libbb/xgethostbyname2.c | |
parent | 448f0241e06e7df2003b7f8afcf01e7406762b4e (diff) | |
download | busybox-w32-9adc6ced4fcab4d8a068874c55d5f563ce9e62f9.tar.gz busybox-w32-9adc6ced4fcab4d8a068874c55d5f563ce9e62f9.tar.bz2 busybox-w32-9adc6ced4fcab4d8a068874c55d5f563ce9e62f9.zip |
ping6: stop using xgethostbyname2, remove it from libbb.
Diffstat (limited to 'libbb/xgethostbyname2.c')
-rw-r--r-- | libbb/xgethostbyname2.c | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/libbb/xgethostbyname2.c b/libbb/xgethostbyname2.c index 83d538669..7af2f75fb 100644 --- a/libbb/xgethostbyname2.c +++ b/libbb/xgethostbyname2.c | |||
@@ -1,22 +1 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | /* TO DELETE */ | |
2 | /* | ||
3 | * Mini xgethostbyname2 implementation. | ||
4 | * | ||
5 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | ||
6 | */ | ||
7 | |||
8 | #include <netdb.h> | ||
9 | #include "libbb.h" | ||
10 | |||
11 | |||
12 | #ifdef CONFIG_FEATURE_IPV6 | ||
13 | struct hostent *xgethostbyname2(const char *name, int af) | ||
14 | { | ||
15 | struct hostent *retval; | ||
16 | |||
17 | if ((retval = gethostbyname2(name, af)) == NULL) | ||
18 | bb_herror_msg_and_die("%s", name); | ||
19 | |||
20 | return retval; | ||
21 | } | ||
22 | #endif | ||