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:
parent
84b01d5afc
commit
29885114a5
@ -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
|
||||||
|
@ -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.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user