diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2008-12-09 14:38:10 -0800 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2008-12-09 14:38:10 -0800 |
commit | f23153d046f014f96d442fca5b9ef6ede7fcf546 (patch) | |
tree | ff797a7b3eab7e4c3a98162c8aa0e497193cea8f /methods | |
parent | aebe158d20055317ad630852d1d331716f61f0ba (diff) |
* methods/gpgv.cc:
- fix compiler warning
* cmdline/apt-get.cc:
- fix "apt-get source pkg=ver" if binary name != source name
and show a message (LP: #202219)
* apt-pkg/deb/debsystem.cc:
- make strings i18n able
Diffstat (limited to 'methods')
-rw-r--r-- | methods/gpgv.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/methods/gpgv.cc b/methods/gpgv.cc index 9f4683e6e..f3277b300 100644 --- a/methods/gpgv.cc +++ b/methods/gpgv.cc @@ -264,7 +264,7 @@ bool GPGVMethod::Fetch(FetchItem *Itm) // least one bad signature. good signatures and NoPubKey signatures // happen easily when a file is signed with multiple signatures if(GoodSigners.empty() or !BadSigners.empty()) - return _error->Error(errmsg.c_str()); + return _error->Error("%s", errmsg.c_str()); } // Just pass the raw output up, because passing it as a real data |