From 860db49e7ecadc88bfc288aaa53ff773ab0d2ef4 Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Thu, 5 May 2016 02:15:01 +0000 Subject: fix uninitialized variable in warning call git-svn-id: svn://tug.org/texlive/trunk@40897 c570f23f-e606-0410-a88d-b1316a301751 --- Master/tlpkg/TeXLive/TLPDB.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Master/tlpkg/TeXLive') diff --git a/Master/tlpkg/TeXLive/TLPDB.pm b/Master/tlpkg/TeXLive/TLPDB.pm index 01ebfdd7e51..aa2c7f51040 100644 --- a/Master/tlpkg/TeXLive/TLPDB.pm +++ b/Master/tlpkg/TeXLive/TLPDB.pm @@ -386,9 +386,9 @@ sub from_file { if ($params{'verify'} && $media ne 'local_uncompressed') { my ($r, $m) = TeXLive::TLCrypto::verify_checksum($path, "$path.$TeXLive::TLConfig::ChecksumExtension"); if ($r == 1) { - tldie("$0: checksum error when downloading $tlpdbfile from $path: $m\n"); + tldie("$0: checksum error when downloading $path from $path: $m\n"); } elsif ($r == 2) { - tldie("$0: signature verification error of $tlpdbfile from $path: $m\n"); + tldie("$0: signature verification error of $path from $path: $m\n"); } elsif ($r == -1) { tldie("$0: connection problems, cannot download: $m\n"); } elsif ($r == -2) { -- cgit v1.2.3