Add a missing const.

This commit is contained in:
lukem 2008-04-19 07:56:34 +00:00
parent 74a2e40f00
commit e39aac16df
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: getaddrinfo.c,v 1.90 2007/06/29 15:53:21 christos Exp $ */
/* $NetBSD: getaddrinfo.c,v 1.91 2008/04/19 07:56:34 lukem Exp $ */
/* $KAME: getaddrinfo.c,v 1.29 2000/08/31 17:26:57 itojun Exp $ */
/*
@ -55,7 +55,7 @@
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: getaddrinfo.c,v 1.90 2007/06/29 15:53:21 christos Exp $");
__RCSID("$NetBSD: getaddrinfo.c,v 1.91 2008/04/19 07:56:34 lukem Exp $");
#endif /* LIBC_SCCS and not lint */
#include "namespace.h"
@ -1477,7 +1477,7 @@ _files_getaddrinfo(void *rv, void *cb_data, va_list ap)
FILE *hostf = NULL;
name = va_arg(ap, char *);
pai = va_arg(ap, struct addrinfo *);
pai = va_arg(ap, const struct addrinfo *);
memset(&sentinel, 0, sizeof(sentinel));
cur = &sentinel;