removing duplicate check that snuck in somehow
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>
Sat, 1 Aug 2009 18:07:27 +0000 (14:07 -0400)
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>
Sat, 1 Aug 2009 18:07:27 +0000 (14:07 -0400)
src/share/checkperms

index c93113ec66708f81ab82fc8755b2ddc942b8b1c2..8e6d7ad48606b99bfb0dae377599b8c6cb825f46 100755 (executable)
@@ -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);
   }