diff options
author | Karl Berry <karl@freefriends.org> | 2016-05-15 18:25:49 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2016-05-15 18:25:49 +0000 |
commit | d38f860ef4df97d28a61e43fd6326cd7e4af22b9 (patch) | |
tree | 52815339ddec07aed025faf32afedc4b0bcd6338 | |
parent | 1cb2aef94442156a40e74989c7ae03092e3cc29a (diff) |
(new): mention root, download failure might not be
missing file (wrong mirror, etc.) rather
connection problem.
git-svn-id: svn://tug.org/texlive/trunk@41150 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/tlpkg/TeXLive/TLPDB.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/tlpkg/TeXLive/TLPDB.pm b/Master/tlpkg/TeXLive/TLPDB.pm index 989e19f054c..c2368e75303 100644 --- a/Master/tlpkg/TeXLive/TLPDB.pm +++ b/Master/tlpkg/TeXLive/TLPDB.pm @@ -130,7 +130,7 @@ sub new { verified => 0 }; my $verify = defined($params{'verify'}) ? $params{'verify'} : 0; - ddebug("TLPDB new: verify = $verify\n"); + ddebug("TLPDB new (root=$self->{root}): verify=$verify\n"); $_listdir = $params{'listdir'} if defined($params{'listdir'}); bless $self, $class; if (defined($params{'tlpdbfile'})) { @@ -370,7 +370,7 @@ sub from_file { } elsif ($r == 2) { tldie("$0: signature verification error of $tlpdbfile from $path: $m\n"); } elsif ($r == -1) { - tldie("$0: connection problems, cannot download: $m\n"); + tldie("$0: cannot download: $m\n"); } elsif ($r == -2) { debug("$0: remote database checksum is not signed, continuing anyway!\n"); $self->verification_status("not signed"); @@ -396,7 +396,7 @@ sub from_file { } elsif ($r == 2) { tldie("$0: signature verification error of $path from $path: $m\n"); } elsif ($r == -1) { - tldie("$0: connection problems, cannot download: $m\n"); + tldie("$0: cannot download: $m\n"); } elsif ($r == -2) { debug("$0: remote database checksum is not signed, continuing anyway!\n"); $self->verification_status("not signed"); |