diff options
author | Damien Miller <djm@mindrot.org> | 2010-11-24 10:36:15 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2010-11-24 10:36:15 +1100 |
commit | 88e341e1ca9502403242a275941b11e509f669fb (patch) | |
tree | c431601d3544e14ddbbeb24764c68648aa3a9f1e /loginrec.c | |
parent | d995712383c043c4f9d8ca52363e6e1df128dc72 (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loginrec.c b/loginrec.c index 95f14c46f..cccaa47ae 100644 --- a/loginrec.c +++ b/loginrec.c | |||
@@ -1673,7 +1673,7 @@ record_failed_login(const char *username, const char *hostname, | |||
1673 | strerror(errno)); | 1673 | strerror(errno)); |
1674 | goto out; | 1674 | goto out; |
1675 | } | 1675 | } |
1676 | if((fst.st_mode & (S_IRWXG | S_IRWXO)) || (fst.st_uid != 0)){ | 1676 | if((fst.st_mode & (S_IXGRP | S_IRWXO)) || (fst.st_uid != 0)){ |
1677 | logit("Excess permission or bad ownership on file %s", | 1677 | logit("Excess permission or bad ownership on file %s", |
1678 | _PATH_BTMP); | 1678 | _PATH_BTMP); |
1679 | goto out; | 1679 | goto out; |