Revert "new version of ip address storage"
[spider.git] / perl / DXUtil.pm
index 4477a94bef90a3ef8e5abdc5ad5814fc53eb3bbb..8bb9b956c59d306b8aab36b6cab0807bca10c5bd 100644 (file)
@@ -477,9 +477,11 @@ sub localdata
        
        if (-e "$main::local_data") {
                $tfn = "$main::data/$ifn";
-               if (-e $tfn && -e $ofn) {
+               if ((-e $tfn) && (-e $ofn)) {
                        $ofn = $tfn if -M $ofn < -M $tfn;
-               } 
+               } else {
+                       $ofn = $tfn if -e $tfn;
+               }
        }
 
        return $ofn;