From cdc4f242667e4df3b2923fde3b888759b1256510 Mon Sep 17 00:00:00 2001 From: minima Date: Sun, 13 Oct 2002 21:00:27 +0000 Subject: [PATCH] change syscopy to copy --- perl/USDB.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl/USDB.pm b/perl/USDB.pm index 89cd9fe5..4cd4143b 100644 --- a/perl/USDB.pm +++ b/perl/USDB.pm @@ -95,7 +95,7 @@ sub load my %dbn; if (-e $dbfn ) { - syscopy($dbfn, "$dbfn.new") or return "cannot copy $dbfn -> $dbfn.new $!"; + copy($dbfn, "$dbfn.new") or return "cannot copy $dbfn -> $dbfn.new $!"; } tie %dbn, 'DB_File', "$dbfn.new", O_RDWR|O_CREAT, 0664, $a or return "cannot tie $dbfn.new $!"; -- 2.34.1