From 7b1039dbe284beb436557a7db2c7da20967c3ad7 Mon Sep 17 00:00:00 2001 From: David Steele Date: Thu, 18 Sep 2014 17:39:24 -0400 Subject: [PATCH] Fixed error message. --- lib/BackRest/File.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/BackRest/File.pm b/lib/BackRest/File.pm index 342d68d2b..536b0ff03 100644 --- a/lib/BackRest/File.pm +++ b/lib/BackRest/File.pm @@ -479,7 +479,7 @@ sub move if (!rename($strPathOpSource, $strPathOpDestination)) { - confess &log(ERROR, "unable to open move file ${strPathOpSource}: " . $!); + confess &log(ERROR, "unable to move file ${strPathOpSource}: " . $!); } } }