diff options
-rwxr-xr-x | bin/envstore | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/envstore b/bin/envstore index 936a584..7f34984 100755 --- a/bin/envstore +++ b/bin/envstore @@ -30,11 +30,11 @@ sub check_store { return(0); } ($mode, $uid) = (stat($store_file))[2,4]; - $mode &= 0x00077; if ($uid != $<) { print STDERR "envstore: store file not owned by us\n"; exit(1); } + $mode &= 0x00077; if ($mode > 0) { print STDERR "envstore: store file writable by group/others\n"; exit(1); |