From: Joe Buehler Date: Fri, 24 Oct 2003 07:31:49 +0000 (+0000) Subject: bos-fix-mode-complaints-20031024 X-Git-Tag: openafs-devel-1_3_50~37 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=c5110942b97b06d423f0452cd9fceb219db1b513;p=packages%2Fo%2Fopenafs.git bos-fix-mode-complaints-20031024 FIXES 2277 complain correctly about mode --- diff --git a/src/bozo/bosoprocs.c b/src/bozo/bosoprocs.c index fd9ec8ec9..c62869320 100644 --- a/src/bozo/bosoprocs.c +++ b/src/bozo/bosoprocs.c @@ -1415,7 +1415,8 @@ DirAccessOK() if (!StatEachEntry(e)) { bozo_Log("unhappy with %s which is a %s that should " "have at least rights %o, at most rights %o %s\n", - e->path, e->dir ? "dir" : "file", e->reqPerm, e->proPerm, + e->path, e->dir ? "dir" : "file", e->reqPerm, + (~e->proPerm & 0777), e->rootOwner ? ", owned by root" : ""); result = 0; break;