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: 1202891 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-107573-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ens-lyon.org Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="iAhGKdS7"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 47Qy7P01jCz9sPL for ; Mon, 2 Dec 2019 05:53:20 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; q=dns; s= default; b=EUuuCNjd8rA2RUBuvCJcD+jJkCBiEQupMN8tEwBWdWWsSPPQYuTgE rl7n1yEl2XbVEoYjQI2g3f/JFfzTmP+qHczzEbGZ8q4M36LYWhkpbfjIWrmGvhKH G20DytGQUOBT2i+WnY9Sj12moe5St9UL0Ig3nETWNnAg2MfPalRy/g= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; s=default; bh=SUkuA1luWVAeundNSe7SUZju41U=; b=iAhGKdS7SQSTbM6KC4gi3WXi8CLV S1X9e61xLBcCUb6QPcxRyHddzOaXk4PA3Y1Dv882cINazaluM0nolemEM2qrCMXU PL0dvdYk8HfDhVrH8CwPvQVQu3OSQgfF3nGP2spFjGERSsHB9DNRCqeAy4k5fvuz 34xgoKnexj7zeEI= 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",