aboutsummaryrefslogtreecommitdiffstats
path: root/op_trustlist_next.c
diff options
context:
space:
mode:
Diffstat (limited to 'op_trustlist_next.c')
-rw-r--r--op_trustlist_next.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/op_trustlist_next.c b/op_trustlist_next.c
new file mode 100644
index 0000000..f501b44
--- /dev/null
+++ b/op_trustlist_next.c
@@ -0,0 +1,12 @@
+/* See LICENSE file for copyright and license details. */
+#include "internal.h"
+
+
+gpgme_error_t
+liberror_gpgme_op_trustlist_next(gpgme_ctx_t ctx, gpgme_trust_item_t *r_item)
+{
+ gpgme_error_t ret = gpgme_op_trustlist_next(ctx, r_item);
+ if (ret)
+ liberror_gpgme_set_error("gpgme_op_trustlist_next", ret);
+ return ret;
+}