projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
67b2994
)
fix getaddrinfo error code for non-numeric service with AI_NUMERICSERV
author
A. Wilcox
<AWilcox@Wilcox-Tech.com>
Thu, 14 Sep 2017 20:53:21 +0000
(15:53 -0500)
committer
Rich Felker
<dalias@aerifal.cx>
Fri, 10 Nov 2017 01:15:02 +0000
(20:15 -0500)
If AI_NUMERICSERV is specified and a numeric service was not provided,
POSIX mandates getaddrinfo return EAI_NONAME. EAI_SERVICE is only for
services that cannot be used on the specified socket type.
src/network/lookup_serv.c
patch
|
blob
|
history
diff --git
a/src/network/lookup_serv.c
b/src/network/lookup_serv.c
index 66ebaea25a3fb492e0b9b35d9b803154beaba473..403b12ae82c521520b432a1ec4dac66721cf4f38 100644
(file)
--- a/
src/network/lookup_serv.c
+++ b/
src/network/lookup_serv.c
@@
-64,7
+64,7
@@
int __lookup_serv(struct service buf[static MAXSERVS], const char *name, int pro
return cnt;
}
- if (flags & AI_NUMERICSERV) return EAI_
SERVIC
E;
+ if (flags & AI_NUMERICSERV) return EAI_
NONAM
E;
size_t l = strlen(name);