From e634376482e70e40aab460ca1f60a4e5a5522bba Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Sat, 27 Oct 2012 12:59:58 -0500 Subject: Checkpath: print the path when correcting the owner Checkpath was printing the path it was working with unless it was correcting the owner. In this case, it was printing "checkpath", which is not very useful. Reported-by: X-Gentoo-Bug: 439014 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=439014 --- src/rc/checkpath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/rc/checkpath.c b/src/rc/checkpath.c index 518d237..5aea597 100644 --- a/src/rc/checkpath.c +++ b/src/rc/checkpath.c @@ -133,7 +133,7 @@ do_check(char *path, uid_t uid, gid_t gid, mode_t mode, inode_t type, } if (mode && (st.st_mode & 0777) != mode) { - einfo("%s: correcting mode", applet); + einfo("%s: correcting mode", path); if (chmod(path, mode)) { eerror("%s: chmod: %s", applet, strerror(errno)); return -1; -- cgit v1.2.3