libbb: conditionalize AF_* usage in error reporting

Signed-off-by: Jeremie Koenig <jk@jk.fr.eu.org>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Jeremie Koenig 2010-05-27 15:39:24 +02:00 committed by Denys Vlasenko
parent 84b01d5afc
commit 29885114a5
2 changed files with 4 additions and 1 deletions

View File

@ -387,8 +387,12 @@ int FAST_FUNC xsocket(int domain, int type, int protocol)
/* Hijack vaguely related config option */ /* Hijack vaguely related config option */
#if ENABLE_VERBOSE_RESOLUTION_ERRORS #if ENABLE_VERBOSE_RESOLUTION_ERRORS
const char *s = "INET"; const char *s = "INET";
# ifdef AF_PACKET
if (domain == AF_PACKET) s = "PACKET"; if (domain == AF_PACKET) s = "PACKET";
# endif
# ifdef AF_NETLINK
if (domain == AF_NETLINK) s = "NETLINK"; if (domain == AF_NETLINK) s = "NETLINK";
# endif
IF_FEATURE_IPV6(if (domain == AF_INET6) s = "INET6";) IF_FEATURE_IPV6(if (domain == AF_INET6) s = "INET6";)
bb_perror_msg_and_die("socket(AF_%s,%d,%d)", s, type, protocol); bb_perror_msg_and_die("socket(AF_%s,%d,%d)", s, type, protocol);
#else #else

View File

@ -43,7 +43,6 @@ config FEATURE_PREFER_IPV4_ADDRESS
config VERBOSE_RESOLUTION_ERRORS config VERBOSE_RESOLUTION_ERRORS
bool "Verbose resolution errors" bool "Verbose resolution errors"
default n default n
depends on PLATFORM_LINUX #because of xsocket() in libbb/xfuncs_prinf.c
help help
Enable if you are not satisfied with simplistic Enable if you are not satisfied with simplistic
"can't resolve 'hostname.com'" and want to know more. "can't resolve 'hostname.com'" and want to know more.