summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorJacques Vidrine <nectar@FreeBSD.org>2000-09-07 02:18:22 +0000
committerJacques Vidrine <nectar@FreeBSD.org>2000-09-07 02:18:22 +0000
commitcb0600bd5456913a3f56dff91f1c843afb9b86eb (patch)
tree790008e5f9216287a270aa6f1cbd0d9200acd7ca /lib/libc
parent0384fff8c5b098545c3db311b0e0aa1ec4c9ae7e (diff)
Notes
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/net/name6.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libc/net/name6.c b/lib/libc/net/name6.c
index ea08d920e666..36df9a0c037a 100644
--- a/lib/libc/net/name6.c
+++ b/lib/libc/net/name6.c
@@ -235,7 +235,7 @@ static struct hostent *
_ghbyname(const char *name, int af, int flags, int *errp)
{
struct hostent *hp;
- int i, rval;
+ int rval;
static const ns_dtab dtab[] = {
NS_FILES_CB(_files_ghbyname, NULL)
@@ -360,7 +360,7 @@ struct hostent *
getipnodebyaddr(const void *src, size_t len, int af, int *errp)
{
struct hostent *hp;
- int i, rval;
+ int rval;
#ifdef INET6
struct in6_addr addrbuf;
#else
@@ -769,7 +769,7 @@ _files_ghbyname(void *rval, void *cb_data, va_list ap)
char *aliases[MAXALIASES + 1], *addrs[2];
union inx_addr addrbuf;
char buf[BUFSIZ];
- int af0 = af;
+ int af0;
name = va_arg(ap, const char *);
af = va_arg(ap, int);
@@ -781,6 +781,7 @@ _files_ghbyname(void *rval, void *cb_data, va_list ap)
return NS_UNAVAIL;
rethp = hp = NULL;
+ af0 = af;
while (fgets(buf, sizeof(buf), fp)) {
line = buf;
if ((addrstr = _hgetword(&line)) == NULL