From patchwork Sun Dec 1 18:53:05 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Thibault X-Patchwork-Id: 36397 Received: (qmail 44193 invoked by alias); 1 Dec 2019 18:53:14 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 44171 invoked by uid 89); 1 Dec 2019 18:53:14 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS, SPF_NEUTRAL autolearn=ham version=3.3.1 spammy=strerror, H*RU:800, HX-Spam-Relays-External:800, H*r:800 X-HELO: hera.aquilenet.fr From: Samuel Thibault To: libc-alpha@sourceware.org Cc: Samuel Thibault , commit-hurd@gnu.org Subject: [hurd, commited 2/3] hurd: make strerror(0) coherent with other ports Date: Sun, 1 Dec 2019 19:53:05 +0100 Message-Id: <20191201185306.1159853-3-samuel.thibault@ens-lyon.org> In-Reply-To: <20191201185306.1159853-1-samuel.thibault@ens-lyon.org> References: <20191201185306.1159853-1-samuel.thibault@ens-lyon.org> MIME-Version: 1.0 Some tests assume that it is "Success", and it is not necessarily related to the kernel anyway. --- mach/err_kern.sub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mach/err_kern.sub b/mach/err_kern.sub index ab00ae40f2..42c38ebd59 100644 --- a/mach/err_kern.sub +++ b/mach/err_kern.sub @@ -50,7 +50,7 @@ */ static char * err_codes_kern[] = { - "(os/kern) successful", + "Success", "(os/kern) invalid address", "(os/kern) protection failure", "(os/kern) no space available",