summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2016-03-16 20:02:53 +0100
committerJulian Andres Klode <jak@debian.org>2016-03-16 20:37:42 +0100
commit5f060c2776606f3166bd6c64119c31be8ba5d857 (patch)
tree3aa9474060318031ff1f55faec07c0607d0ec73b
parent421807e1d38c58b776be0b20faed94c5316d38eb (diff)
Make the weak signature message less ambigious
There was a complaint that, in the previous message, the key fingerprint could be mistaken for a SHA1 digest due to the (SHA1) after it. Gbp-Dch: ignore
-rw-r--r--methods/gpgv.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/methods/gpgv.cc b/methods/gpgv.cc
index f355aaac3..70207e615 100644
--- a/methods/gpgv.cc
+++ b/methods/gpgv.cc
@@ -311,7 +311,7 @@ bool GPGVMethod::URIAcquire(std::string const &Message, FetchItem *Itm)
if (NotWarnAboutSigners.empty()) {
for (auto const & Signer : SoonWorthlessSigners)
// TRANSLATORS: The second %s is the reason and is untranslated for repository owners.
- Warning(_("Weak signature from %s (%s)"), Signer.key.c_str(), Signer.note.c_str());
+ Warning(_("Signature by key %s uses weak digest algorithm (%s)"), Signer.key.c_str(), Signer.note.c_str());
}
if (GoodSigners.empty() || !BadSigners.empty() || !NoPubKeySigners.empty())