diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2011-10-20 18:49:48 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2011-10-20 18:55:46 +0200 |
commit | 40f8f5f0336ddcd6f7ea2d45d4713b553a225843 (patch) | |
tree | 21355df50f86ab73c4abbdba8031b4c9f40bbd0f /libc | |
parent | 984e1c1e44e3a6de236ab5d8850863a1f995b4e2 (diff) |
gethostbyname_r: set correct h_errno upon failure
previously gethostbyname_r(ipv6.google.com);herror("ERROR:") gave
Answer name = |ipv6.google.com|
Answer type = |5|
herrno=1
h_errno=0
ERROR:: Error 0
herrno=1
h_errno=1
ERROR:: Unknown host
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc')
-rw-r--r-- | libc/inet/resolv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/inet/resolv.c b/libc/inet/resolv.c index 21e84e52c..38a03bb9e 100644 --- a/libc/inet/resolv.c +++ b/libc/inet/resolv.c @@ -2170,6 +2170,7 @@ int gethostbyname_r(const char *name, } *h_errnop = HOST_NOT_FOUND; + __set_h_errno(HOST_NOT_FOUND); i = TRY_AGAIN; free_and_ret: |