summaryrefslogtreecommitdiff
path: root/src/ostree/ot-builtin-show.c
diff options
context:
space:
mode:
authorPhilip Withnall <withnall@endlessm.com>2017-08-09 14:35:53 +0100
committerAtomic Bot <atomic-devel@projectatomic.io>2017-08-10 13:38:40 +0000
commit75bce24cb9417f9b8111ed689d3d9c2f4bec154f (patch)
tree1ea0c6fd2afcb6d6fa942f5dee912155d3b9f310 /src/ostree/ot-builtin-show.c
parentf1102763dfda1d1acc0352b66cf9f309d28d6b1a (diff)
downloadostree-75bce24cb9417f9b8111ed689d3d9c2f4bec154f.tar.gz
lib/gpg-verify: Add an OstreeGpgError error domain
Add a new error domain for GPG signing/verification errors, and use it throughout libostree for describing verification errors. This replaces various uses of G_IO_ERROR_FAILED, and one instance of G_IO_ERROR_NOT_FOUND (for which some code in ot-builtin-show.c had to be changed to ensure it was still handled correctly). The use of a separate error domain allows failures in GPG operations to be handled separately from network failures (where the summary file could not be found to be downloaded, for example) or timeouts. Signed-off-by: Philip Withnall <withnall@endlessm.com> Closes: #1064 Closes: #1071 Approved by: mbarnes
Diffstat (limited to 'src/ostree/ot-builtin-show.c')
-rw-r--r--src/ostree/ot-builtin-show.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ostree/ot-builtin-show.c b/src/ostree/ot-builtin-show.c
index 0c57637b..4a510a99 100644
--- a/src/ostree/ot-builtin-show.c
+++ b/src/ostree/ot-builtin-show.c
@@ -163,7 +163,7 @@ print_object (OstreeRepo *repo,
&local_error);
}
- if (g_error_matches (local_error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND))
+ if (g_error_matches (local_error, OSTREE_GPG_ERROR, OSTREE_GPG_ERROR_NO_SIGNATURE))
{
/* Ignore */
}