changed lockfile name to .lck (from .lock) for M$
[spider.git] / perl / DXUser.pm
index fa9e109f56cbe5a1cb3ca8cf7b66307290f1a535..ca73a02ed2ffde0668dd9b4ce7e047a4ce3d3742 100644 (file)
@@ -340,7 +340,7 @@ BEGIN {
        
        # try to detect a lockfile (this isn't atomic but 
        # should do for now
-       $lockfn = "$root/perl/cluster.lock";       # lock file name
+       $lockfn = "$root/perl/cluster.lck";       # lock file name
        if (-e $lockfn) {
                open(CLLOCK, "$lockfn") or die "Can't open Lockfile ($lockfn) $!";
                my $pid = <CLLOCK>;