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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EEEB7138206 for ; Tue, 16 Jan 2018 19:37:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E1B27E08E8; Tue, 16 Jan 2018 19:36:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C1F14E08E8 for ; Tue, 16 Jan 2018 19:36:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B4D7C335C4A for ; Tue, 16 Jan 2018 19:36:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1746E1AF for ; Tue, 16 Jan 2018 19:36:56 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1516131277.87c98ebb01873120eecc1757e615b3a4c14a2f1f.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: src/rc/ X-VCS-Repository: proj/openrc X-VCS-Files: src/rc/checkpath.c X-VCS-Directories: src/rc/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 87c98ebb01873120eecc1757e615b3a4c14a2f1f X-VCS-Branch: master Date: Tue, 16 Jan 2018 19:36:56 +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-Archives-Salt: aaa87fbf-eee3-4488-b729-68cf8893b757 X-Archives-Hash: 2e8212faed512e330d0fc73e5b5d6688 commit: 87c98ebb01873120eecc1757e615b3a4c14a2f1f Author: William Hubbs gmail com> AuthorDate: Tue Jan 16 19:34:37 2018 +0000 Commit: William Hubbs gentoo org> CommitDate: Tue Jan 16 19:34:37 2018 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=87c98ebb checkpath: fix lchown error message X-Gentoo-Bug: 643084 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=643084 src/rc/checkpath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rc/checkpath.c b/src/rc/checkpath.c index 8846761b..39e7ce4d 100644 --- a/src/rc/checkpath.c +++ b/src/rc/checkpath.c @@ -169,7 +169,7 @@ static int do_check(char *path, uid_t uid, gid_t gid, mode_t mode, } einfo("%s: correcting owner", path); if (lchown(path, uid, gid)) { - eerror("%s: chown: %s", applet, strerror(errno)); + eerror("%s: lchown: %s", applet, strerror(errno)); return -1; } }