Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/openrc:master commit in: src/rc/
Date: Wed, 24 Jan 2018 23:44:21
Message-Id: 1516812993.5dd1d39d20c118064d31ed65dc7ae2de75dd7908.williamh@OpenRC
1 commit: 5dd1d39d20c118064d31ed65dc7ae2de75dd7908
2 Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
3 AuthorDate: Wed Jan 24 16:56:33 2018 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 24 16:56:33 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=5dd1d39d
7
8 typo fix
9
10 src/rc/checkpath.c | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/src/rc/checkpath.c b/src/rc/checkpath.c
14 index 2e2b4ee3..07e5f78a 100644
15 --- a/src/rc/checkpath.c
16 +++ b/src/rc/checkpath.c
17 @@ -205,7 +205,7 @@ static int do_check(char *path, uid_t uid, gid_t gid, mode_t mode,
18 if (selinux_on)
19 selinux_util_label(path);
20 } else {
21 - eerror(fstat: %s: %s", path, strerror(errno));
22 + eerror("fstat: %s: %s", path, strerror(errno));
23 close(readfd);
24 return -1;
25 }