From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6C7C7138A1A for ; Sun, 15 Feb 2015 22:15:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D672EE08D3; Sun, 15 Feb 2015 22:15:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 73FF9E08D3 for ; Sun, 15 Feb 2015 22:15:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1D1B5340768 for ; Sun, 15 Feb 2015 22:15:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 955C811D65 for ; Sun, 15 Feb 2015 22:15:46 +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: <1424038518.6781667641580fef852ccffc2f42d060f791b354.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: 6781667641580fef852ccffc2f42d060f791b354 X-VCS-Branch: master Date: Sun, 15 Feb 2015 22:15:46 +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: 0f57901f-1175-40bf-bed4-425fb97a9087 X-Archives-Hash: c6844967cff7c12ce186d786b4216c9b commit: 6781667641580fef852ccffc2f42d060f791b354 Author: William Hubbs gmail com> AuthorDate: Sun Feb 15 22:15:18 2015 +0000 Commit: William Hubbs gentoo org> CommitDate: Sun Feb 15 22:15:18 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=67816676 typo fix --- 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 b6f1d6a..4e36242 100644 --- a/src/rc/checkpath.c +++ b/src/rc/checkpath.c @@ -134,7 +134,7 @@ static int do_check(char *path, uid_t uid, gid_t gid, mode_t mode, if (mode && (st.st_mode & 0777) != mode) { if ((type != inode_dir) && (st.st_nlink != 1)) { - eerror("%s: chown: %s %s", applet, "Too many hard links to", path); + eerror("%s: chmod: %s %s", applet, "Too many hard links to", path); return -1; } einfo("%s: correcting mode", path);