]> git.saurik.com Git - apt.git/commitdiff
* Applied patch from Robert Millan <rmh@aybabtu.com> to fix the error
authorOtavio Salvador <otavio@ossystems.com.br>
Fri, 18 Jan 2008 00:37:11 +0000 (22:37 -0200)
committerOtavio Salvador <otavio@ossystems.com.br>
Fri, 18 Jan 2008 00:37:11 +0000 (22:37 -0200)
  message when gpgv isn't installed, closes: #452640.

debian/changelog
methods/gpgv.cc

index a489be3f1d949617ec4b914e7a5a7182f5d9784b..2a5b55cd61de30c303c64e89a8570c1c21a7c4cf 100644 (file)
@@ -4,7 +4,11 @@ apt (0.7.11) UNRELEASED; urgency=low
     - Vietnamese updated. Closes: #460825
     - Basque updated. Closes: #461166
 
- -- Christian Perrier <bubulle@debian.org>  Tue, 15 Jan 2008 20:39:10 +0100
+  [ Otavio Salvador ]
+  * Applied patch from Robert Millan <rmh@aybabtu.com> to fix the error
+    message when gpgv isn't installed, closes: #452640.
+
+ -- Otavio Salvador <otavio@ossystems.com.br>  Thu, 17 Jan 2008 22:36:46 -0200
 
 apt (0.7.10) unstable; urgency=low
 
index 1ed26a30a1ac3da595f7cb00c557925839fa018d..9f4683e6e05f2522a6934faaccb6e0de15c4f5dd 100644 (file)
@@ -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