diff options
author | Natanael Copa <natanael.copa@gmail.com> | 2011-06-12 12:09:04 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-12-23 15:49:02 +0100 |
commit | eb5d129b641c644d82089c3ded3d36288c66123c (patch) | |
tree | ebf42ee240c72cece0c130921398b787160d19b3 | |
parent | 0be0174259a3a35313fe1a0413630b919f910f5b (diff) | |
download | uClibc-alpine-eb5d129b641c644d82089c3ded3d36288c66123c.tar.bz2 uClibc-alpine-eb5d129b641c644d82089c3ded3d36288c66123c.tar.xz |
getaddrinfo: allow numeric service without any hints
This appears to correspond to what glibc does and this fixes an
issue with iptables-1.4.11 with udp and raw port numbers.
(see http://bugzilla.netfilter.org/show_bug.cgi?id=721)
This fixes #3841
https://bugs.busybox.net/show_bug.cgi?id=3841
Signed-off-by: Natanael Copa <natanael.copa@gmail.com>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
(cherry picked from commit bc3be18145e4d57e7268506f123c0f0f373a15e2)
-rw-r--r-- | libc/inet/getaddrinfo.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libc/inet/getaddrinfo.c b/libc/inet/getaddrinfo.c index 1a77c5199..e7511f6c4 100644 --- a/libc/inet/getaddrinfo.c +++ b/libc/inet/getaddrinfo.c @@ -820,13 +820,6 @@ getaddrinfo(const char *name, const char *service, if (hints->ai_flags & AI_NUMERICSERV) return EAI_NONAME; gaih_service.num = -1; - } else { - /* - * Can't specify a numerical socket unless a protocol - * family was given. - */ - if (hints->ai_socktype == 0 && hints->ai_protocol == 0) - return EAI_SERVICE; } pservice = &gaih_service; } else |