Unwrap a line which wasn't wrapped before it had an __UNCONST() added

to it, and now that that is gone again, doesn't need wrapping any more.

That line is now unaltered from what it was 3 revs ago (bit for bit).

NFC.
This commit is contained in:
kre 2024-01-21 12:58:10 +00:00
parent cba6955407
commit c3aea5f47d
1 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: getaddrinfo.c,v 1.126 2024/01/20 16:18:56 christos Exp $ */
/* $NetBSD: getaddrinfo.c,v 1.127 2024/01/21 12:58:10 kre 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.126 2024/01/20 16:18:56 christos Exp $");
__RCSID("$NetBSD: getaddrinfo.c,v 1.127 2024/01/21 12:58:10 kre Exp $");
#endif /* LIBC_SCCS and not lint */
#ifndef RUMP_ACTION
@ -1440,8 +1440,7 @@ explore_numeric_scope(const struct addrinfo *pai, const char *hostname,
if (cur->ai_family != AF_INET6)
continue;
sin6 = (struct sockaddr_in6 *)(void *)cur->ai_addr;
if (ip6_str2scopeid(scope, sin6, &scopeid)
== -1) {
if (ip6_str2scopeid(scope, sin6, &scopeid) == -1) {
free(hostname2);
return EAI_NODATA; /* XXX: is return OK? */
}