From 065466616ab53424eb7c5d6cac640bf4be54fe56 Mon Sep 17 00:00:00 2001 From: Sketch Date: Fri, 7 Aug 2015 13:56:34 -0500 Subject: [PATCH] Fix reversed message in utils/update-cnf.pl --- utils/update-cnf.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/update-cnf.pl b/utils/update-cnf.pl index e9e774d38..b6c2b9614 100755 --- a/utils/update-cnf.pl +++ b/utils/update-cnf.pl @@ -42,7 +42,7 @@ } else { # Heck, let's just copy the new file to the old one and quit! print "*** Creating $old from $new...\n"; - copy $new, $old or die "Unable to copy $old to $new: $!\n"; + copy $new, $old or die "Unable to copy $new to $old: $!\n"; exit 0; }