From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2012) id D65A83858D32; Mon, 29 May 2023 13:32:20 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D65A83858D32 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1685367140; bh=L5j6uWV+o+INn+Gf4BrekVhzHLuWOx/4rbGg4qN12/E=; h=From:To:Subject:Date:From; b=dwWcDAZYtFF8ec6DaGuqiunLpbik3/7yX2k2raooV0iym/kRmXLFlfTwToZRyaO9h GQBqjIeh4vgO/yeLkVQqlQc0UBAkN08cxZgeNtJUtaFYOzq7FJe/eLspSj18nv1xZQ JewQj5riWwzSlYI+w4MU1AfRlF4ubAWIddMoH/xM= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Arjun Shankar To: glibc-cvs@sourceware.org Subject: [glibc] posix: Add error message for EAI_OVERFLOW X-Act-Checkin: glibc X-Git-Author: Dridi Boukelmoune X-Git-Refname: refs/heads/master X-Git-Oldrev: d9055634a34d4bcb242f84f36c9a7bb1c4019076 X-Git-Newrev: 33d7c0e1cb712a3b7ea46d7f88569721805bc2db Message-Id: <20230529133220.D65A83858D32@sourceware.org> Date: Mon, 29 May 2023 13:32:20 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=33d7c0e1cb712a3b7ea46d7f88569721805bc2db commit 33d7c0e1cb712a3b7ea46d7f88569721805bc2db Author: Dridi Boukelmoune Date: Thu May 25 14:45:03 2023 +0200 posix: Add error message for EAI_OVERFLOW Signed-off-by: Dridi Boukelmoune Reviewed-by: Arjun Shankar Diff: --- sysdeps/posix/gai_strerror-strs.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sysdeps/posix/gai_strerror-strs.h b/sysdeps/posix/gai_strerror-strs.h index 19040a5138..667c4b2d4a 100644 --- a/sysdeps/posix/gai_strerror-strs.h +++ b/sysdeps/posix/gai_strerror-strs.h @@ -15,3 +15,4 @@ _S(EAI_NOTCANCELED, N_("Request not canceled")) _S(EAI_ALLDONE, N_("All requests done")) _S(EAI_INTR, N_("Interrupted by a signal")) _S(EAI_IDN_ENCODE, N_("Parameter string not correctly encoded")) +_S(EAI_OVERFLOW, N_("Result too large for supplied buffer"))