diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2009-08-01 14:07:27 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2009-08-01 14:07:27 -0400 |
commit | 87c2a239f7daa2beab99dd135f04a1458f96690b (patch) | |
tree | af601aeb9943506f1db7c28493b787648afdabcb /src | |
parent | c27bb69e547de6c17f49b6703a61a009fb862be2 (diff) |
removing duplicate check that snuck in somehow
Diffstat (limited to 'src')
-rwxr-xr-x | src/share/checkperms | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/share/checkperms b/src/share/checkperms index c93113e..8e6d7ad 100755 --- a/src/share/checkperms +++ b/src/share/checkperms @@ -73,10 +73,6 @@ sub permissions_ok { return sprintf("improper group writability on '%s'", $path); } - if (S_IWGRP & $stat->mode) { - return sprintf("improper group writability on '%s'", $path); - } - if (S_IWOTH & $stat->mode) { return sprintf("improper other writability on '%s'", $path); } |