From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CD34C15800F for ; Tue, 14 Feb 2023 03:40:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C625AE0788; Tue, 14 Feb 2023 03:40:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A9DC9E0788 for ; Tue, 14 Feb 2023 03:40:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B04EE335DA4 for ; Tue, 14 Feb 2023 03:40:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1869D89F for ; Tue, 14 Feb 2023 03:40:29 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1676345988.1af833c06ecd9750d69bb291d4ff01fd0f88c8d2.sam@gentoo> Subject: [gentoo-commits] proj/gentoo-functions:master commit in: / X-VCS-Repository: proj/gentoo-functions X-VCS-Files: functions.sh X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1af833c06ecd9750d69bb291d4ff01fd0f88c8d2 X-VCS-Branch: master Date: Tue, 14 Feb 2023 03:40:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3a3b7e82-0948-4248-83b0-c840ab907406 X-Archives-Hash: 63a137f6b67053d91027af7361b74ec5 commit: 1af833c06ecd9750d69bb291d4ff01fd0f88c8d2 Author: Kerin Millar plushkava net> AuthorDate: Tue Feb 14 00:18:39 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue Feb 14 03:39:48 2023 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-functions.git/commit/?id=1af833c0 Fix a typo in eend() whereby the wrong function name is given to _eend() Signed-off-by: Kerin Millar plushkava.net> Fixes: f97465ca0bf8134f811c3a89af25693a2802c31b Signed-off-by: Sam James gentoo.org> functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.sh b/functions.sh index 8a2a788..a5d6502 100644 --- a/functions.sh +++ b/functions.sh @@ -286,7 +286,7 @@ eend() { local retval - _eend error "$@" + _eend eerror "$@" retval=$? LAST_E_CMD="eend" return "${retval}"