diff options
author | Michael Vogt <mvo@ubuntu.com> | 2014-07-21 11:19:37 +0200 |
---|---|---|
committer | Michael Vogt <mvo@ubuntu.com> | 2014-07-21 16:29:51 +0200 |
commit | 2737f28a1cb2d03c66d2a7edd04215566903dbf1 (patch) | |
tree | e445e5408c4895b977ea8d7659767a0cc1f12038 /methods/gpgv.cc | |
parent | 47aca3cfc17ee23c37693b4e53c675a74b38decd (diff) |
Download Release first, then Release.gpg
The old way of handling this was that pkgAcqMetaIndex was responsible
to check/move both Release and Release.gpg in place. This breaks
the assumption of the transaction that each pkgAcquire::Item has
a single File that its responsible for.
Diffstat (limited to 'methods/gpgv.cc')
-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 ae521a2ed..30fd217bd 100644 --- a/methods/gpgv.cc +++ b/methods/gpgv.cc @@ -159,7 +159,7 @@ string GPGVMethod::VerifyGetSigners(const char *file, const char *outfile, waitpid(pid, &status, 0); if (Debug == true) { - std::clog << "gpgv exited\n"; + ioprintf(std::clog, "gpgv exited with status %i\n", WEXITSTATUS(status)); } if (WEXITSTATUS(status) == 0) |