diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-01-08 14:26:07 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-01-08 14:26:07 +0000 |
commit | 8fe06c99a46de3284e2aba96a5c9016b49ac8cb2 (patch) | |
tree | 3bcf5ed69113edc5a80d8367cc4bc19303f7386a | |
parent | e55d273af1471243c5eb3326b1b0aa3bd52b6fb5 (diff) | |
download | urpmi-8fe06c99a46de3284e2aba96a5c9016b49ac8cb2.tar urpmi-8fe06c99a46de3284e2aba96a5c9016b49ac8cb2.tar.gz urpmi-8fe06c99a46de3284e2aba96a5c9016b49ac8cb2.tar.bz2 urpmi-8fe06c99a46de3284e2aba96a5c9016b49ac8cb2.tar.xz urpmi-8fe06c99a46de3284e2aba96a5c9016b49ac8cb2.zip |
better error message: "copying" is not adapted for something we downloaded, "retrieval" works better for both copied/retrieved cases
-rw-r--r-- | urpm/media.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/media.pm b/urpm/media.pm index fd49d70c..bdb43e33 100644 --- a/urpm/media.pm +++ b/urpm/media.pm @@ -1027,7 +1027,7 @@ sub check_synthesis_md5sum { if ($wanted_md5sum) { $urpm->{log}(N("computing md5sum of retrieved source synthesis")); urpm::md5sum::compute(cachedir_with_synthesis($urpm, $medium)) eq $wanted_md5sum or - $urpm->{error}(N("copy of [%s] failed (md5sum mismatch)", _url_with_synthesis($medium))), return; + $urpm->{error}(N("retrieval of [%s] failed (md5sum mismatch)", _url_with_synthesis($medium))), return; } 1; } |