summaryrefslogtreecommitdiff
path: root/lib/libc/net
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-04-03 07:54:02 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-04-03 07:54:02 +0000
commit4098ac372a6188ff4f10e363326dd7cb21d72ef6 (patch)
tree09f4acc5f8a652e7045197d85fc023db868b568b /lib/libc/net
parent7446def91616734467d0d071eeb54c623b4aff6d (diff)
another lookup[] loop accident
Diffstat (limited to 'lib/libc/net')
-rw-r--r--lib/libc/net/gethostnamadr.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libc/net/gethostnamadr.c b/lib/libc/net/gethostnamadr.c
index f1c34bce061..b72118c45c1 100644
--- a/lib/libc/net/gethostnamadr.c
+++ b/lib/libc/net/gethostnamadr.c
@@ -52,7 +52,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: gethostnamadr.c,v 1.17 1997/04/03 05:53:23 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: gethostnamadr.c,v 1.18 1997/04/03 07:54:01 deraadt Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/param.h>
@@ -579,6 +579,7 @@ gethostbyname2(name, af)
break;
}
}
+ /* XXX h_errno not correct in all cases... */
return (hp);
}
@@ -672,7 +673,7 @@ gethostbyaddr(addr, len, af)
break;
}
if (!(hp = getanswer(&buf, n, qbuf, T_PTR)))
- return (NULL); /* h_errno was set by getanswer() */
+ break;
hp->h_addrtype = af;
hp->h_length = len;
bcopy(addr, host_addr, len);
@@ -691,6 +692,7 @@ gethostbyaddr(addr, len, af)
break;
}
}
+ /* XXX h_errno not correct in all cases... */
return (hp);
}