diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2009-01-06 12:03:26 -0500 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2009-01-06 12:03:26 -0500 |
commit | 265f2708bdc6030250c13d46d70ed689c140c34e (patch) | |
tree | 56498f9ab02ecfc4dcbd8c58c942568fcbc5bba3 | |
parent | 6e3f696e788a56f30b5b3f8250647fe4cd63c884 (diff) | |
download | nfs-utils-265f2708bdc6030250c13d46d70ed689c140c34e.tar.gz nfs-utils-265f2708bdc6030250c13d46d70ed689c140c34e.tar.xz nfs-utils-265f2708bdc6030250c13d46d70ed689c140c34e.zip |
mount: revert recent fix for build problems on old systems
Revert the patch that added local definitions of AI_ADDRCONFIG and
friends to utils/mount/network.c. While old header versions don't
have those flags, even older versions of getaddrinfo(3) don't
support those flags at all.
The result is this error:
mount.nfs: DNS resolution failed for 10.10.10.10: Bad value for ai_flags
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r-- | utils/mount/network.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/utils/mount/network.c b/utils/mount/network.c index 6a9a41a..afa47a4 100644 --- a/utils/mount/network.c +++ b/utils/mount/network.c @@ -50,24 +50,6 @@ #include "nfsrpc.h" #include "network.h" -/* - * Earlier versions of glibc's /usr/include/netdb.h exclude these - * definitions because it was thought they were not part of a stable - * POSIX standard. However, they are defined by RFC 2553 and 3493 - * and in POSIX 1003.1-2001, so these definitions were added in later - * versions of netdb.h. - */ -#ifndef AI_V4MAPPED -#define AI_V4MAPPED 0x0008 /* IPv4-mapped addresses are acceptable. */ -#endif /* AI_V4MAPPED */ -#ifndef AI_ALL -#define AI_ALL 0x0010 /* Return both IPv4 and IPv6 addresses. */ -#endif /* AI_ALL */ -#ifndef AI_ADDRCONFIG -#define AI_ADDRCONFIG 0x0020 /* Use configuration of this host to choose \ - returned address type. */ -#endif /* AI_ADDRCONFIG */ - #define PMAP_TIMEOUT (10) #define CONNECT_TIMEOUT (20) #define MOUNT_TIMEOUT (30) |