aboutsummaryrefslogtreecommitdiffstats
path: root/op_revuid_start.c
diff options
context:
space:
mode:
Diffstat (limited to 'op_revuid_start.c')
-rw-r--r--op_revuid_start.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/op_revuid_start.c b/op_revuid_start.c
new file mode 100644
index 0000000..efbf307
--- /dev/null
+++ b/op_revuid_start.c
@@ -0,0 +1,12 @@
+/* See LICENSE file for copyright and license details. */
+#include "internal.h"
+
+
+gpgme_error_t
+liberror_gpgme_op_revuid_start(gpgme_ctx_t ctx, gpgme_key_t key, const char *userid, unsigned int reserved)
+{
+ gpgme_error_t ret = gpgme_op_revuid_start(ctx, key, userid, reserved);
+ if (ret)
+ liberror_gpgme_set_error("gpgme_op_revuid_start", ret);
+ return ret;
+}