Skip to content

Commit

Permalink
checkpath: fix lchown error message
Browse files Browse the repository at this point in the history
X-Gentoo-Bug: 643084
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=643084
  • Loading branch information
williamh committed Jan 16, 2018
1 parent 4af5a80 commit 87c98eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rc/checkpath.c
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 87c98eb

Please sign in to comment.