From 41e18f02ebc9bdc924bea371e87bf9db1eb9ec87 Mon Sep 17 00:00:00 2001 From: lace <> Date: Sat, 2 Jun 2007 09:04:15 +0000 Subject: [PATCH] Fixed recursive directories removal: 0600 -> 0700 --- bin/cvsutil | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cvsutil b/bin/cvsutil index 7aa18ec..026d0cd 100755 --- a/bin/cvsutil +++ b/bin/cvsutil @@ -221,7 +221,7 @@ sub localactionrm { my($filename)=@_; - chmod 0600,$filename or do { + chmod 0700,$filename or do { mayfatal "File \"$_\" cannot be chmod(2)ed" if !$!{ENOENT}; }; # '\1' for '-r': -- 1.8.3.1