diff options
Diffstat (limited to 'Master/tlpkg/bin/check-tlnet-consistency')
-rwxr-xr-x | Master/tlpkg/bin/check-tlnet-consistency | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/check-tlnet-consistency b/Master/tlpkg/bin/check-tlnet-consistency index 5e83a991daf..b8f28b36b65 100755 --- a/Master/tlpkg/bin/check-tlnet-consistency +++ b/Master/tlpkg/bin/check-tlnet-consistency @@ -15,6 +15,7 @@ BEGIN { use strict; use TeXLive::TLConfig; +use TeXLive::TLCrypto; use TeXLive::TLPOBJ; use TeXLive::TLPDB; use TeXLive::TLUtils; @@ -234,7 +235,7 @@ sub check_size_checksum { my $s = (stat $cont)[7]; if ($s == $size) { if ($checksum) { - if (TeXLive::TLUtils::tlchecksum($cont) ne $checksum) { + if (TeXLive::TLCrypto::tlchecksum($cont) ne $checksum) { $checksumerror = 1; } } |