From f83589b5929befc4f6924ab615035140b93ca419 Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Thu, 17 Jan 2008 22:37:11 -0200 Subject: [PATCH] * Applied patch from Robert Millan to fix the error message when gpgv isn't installed, closes: #452640. --- debian/changelog | 6 +++++- methods/gpgv.cc | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index a489be3f..2a5b55cd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,7 +4,11 @@ apt (0.7.11) UNRELEASED; urgency=low - Vietnamese updated. Closes: #460825 - Basque updated. Closes: #461166 - -- Christian Perrier Tue, 15 Jan 2008 20:39:10 +0100 + [ Otavio Salvador ] + * Applied patch from Robert Millan to fix the error + message when gpgv isn't installed, closes: #452640. + + -- Otavio Salvador Thu, 17 Jan 2008 22:36:46 -0200 apt (0.7.10) unstable; urgency=low diff --git a/methods/gpgv.cc b/methods/gpgv.cc index 1ed26a30..9f4683e6 100644 --- a/methods/gpgv.cc +++ b/methods/gpgv.cc @@ -211,7 +211,7 @@ string GPGVMethod::VerifyGetSigners(const char *file, const char *outfile, } else if (WEXITSTATUS(status) == 111) { - ioprintf(ret, _("Could not execute '%s' to verify signature (is gnupg installed?)"), gpgvpath.c_str()); + ioprintf(ret, _("Could not execute '%s' to verify signature (is gpgv installed?)"), gpgvpath.c_str()); return ret.str(); } else -- 2.20.1