From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2206) id E3D3A3858C27; Tue, 3 Aug 2021 20:55:32 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E3D3A3858C27 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Siddhesh Poyarekar To: glibc-cvs@sourceware.org Subject: [glibc] gethosts: Remove unused argument _type X-Act-Checkin: glibc X-Git-Author: Siddhesh Poyarekar X-Git-Refname: refs/heads/master X-Git-Oldrev: df183287ff7ded9471205abfa59df27e5e5401da X-Git-Newrev: b17e842a60819098d2a203ecc8b8371b7e1d6c65 Message-Id: <20210803205532.E3D3A3858C27@sourceware.org> Date: Tue, 3 Aug 2021 20:55:32 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Aug 2021 20:55:33 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=b17e842a60819098d2a203ecc8b8371b7e1d6c65 commit b17e842a60819098d2a203ecc8b8371b7e1d6c65 Author: Siddhesh Poyarekar Date: Wed Aug 4 02:21:01 2021 +0530 gethosts: Remove unused argument _type The generated code is unchanged. Diff: --- sysdeps/posix/getaddrinfo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.c index 43dfc6739e..9f1cde27b5 100644 --- a/sysdeps/posix/getaddrinfo.c +++ b/sysdeps/posix/getaddrinfo.c @@ -239,7 +239,7 @@ convert_hostent_to_gaih_addrtuple (const struct addrinfo *req, return true; } -#define gethosts(_family, _type) \ +#define gethosts(_family) \ { \ struct hostent th; \ char *localcanon = NULL; \ @@ -829,7 +829,7 @@ gaih_inet (const char *name, const struct gaih_service *service, if (req->ai_family == AF_INET6 || req->ai_family == AF_UNSPEC) { - gethosts (AF_INET6, struct in6_addr); + gethosts (AF_INET6); no_inet6_data = no_data; inet6_status = status; } @@ -841,7 +841,7 @@ gaih_inet (const char *name, const struct gaih_service *service, know we are not going to need them. */ && ((req->ai_flags & AI_ALL) || !got_ipv6))) { - gethosts (AF_INET, struct in_addr); + gethosts (AF_INET); if (req->ai_family == AF_INET) {