summaryrefslogtreecommitdiffstats
path: root/loginrec.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2010-11-24 10:36:15 +1100
committerDamien Miller <djm@mindrot.org>2010-11-24 10:36:15 +1100
commit88e341e1ca9502403242a275941b11e509f669fb (patch)
treec431601d3544e14ddbbeb24764c68648aa3a9f1e /loginrec.c
parentd995712383c043c4f9d8ca52363e6e1df128dc72 (diff)
- (djm) [loginrec.c] Relax permission requirement on btmp logs to allow
group read/write. ok dtucker@
Diffstat (limited to 'loginrec.c')
-rw-r--r--loginrec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loginrec.c b/loginrec.c
index 95f14c46..cccaa47a 100644
--- a/loginrec.c
+++ b/loginrec.c
@@ -1673,7 +1673,7 @@ record_failed_login(const char *username, const char *hostname,
strerror(errno));
goto out;
}
- if((fst.st_mode & (S_IRWXG | S_IRWXO)) || (fst.st_uid != 0)){
+ if((fst.st_mode & (S_IXGRP | S_IRWXO)) || (fst.st_uid != 0)){
logit("Excess permission or bad ownership on file %s",
_PATH_BTMP);
goto out;