diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2011-07-13 19:01:22 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2011-07-13 19:01:22 +0200 |
commit | efd1da06d60b7ce4192fd3ca1fad55e018b7185e (patch) | |
tree | f053dc4d69583e36db1b5a210458439e7a49c13c /methods | |
parent | 22ff82ff00da247da37fbaa136f34a9dc020e08b (diff) |
fix from David Kalnischkies for the InRelease gpg verification
code (LP: #784473)
Diffstat (limited to 'methods')
-rw-r--r-- | methods/gpgv.cc | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/methods/gpgv.cc b/methods/gpgv.cc index efe1f73f7..960c06180 100644 --- a/methods/gpgv.cc +++ b/methods/gpgv.cc @@ -65,13 +65,16 @@ string GPGVMethod::VerifyGetSigners(const char *file, const char *outfile, return string("Couldn't spawn new process") + strerror(errno); else if (pid == 0) { - if (SigVerify::RunGPGV(outfile, file, 3, fd) == false) + _error->PushToStack(); + bool const success = SigVerify::RunGPGV(outfile, file, 3, fd); + if (success == false) { - // TRANSLATOR: %s is the trusted keyring parts directory - ioprintf(ret, _("No keyring installed in %s."), - _config->FindDir("Dir::Etc::TrustedParts").c_str()); - return ret.str(); + string errmsg; + _error->PopMessage(errmsg); + _error->RevertToStack(); + return errmsg; } + _error->RevertToStack(); exit(111); } close(fd[1]); |