blob: 9fb92d9b90b8e1b35d7564272dddf23bea263cfc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* See LICENSE file for copyright and license details. */
#include "internal.h"
gpgme_error_t
liberror_gpgme_op_keylist_ext_start(gpgme_ctx_t ctx, const char *pattern[], int secret_only, int reserved)
{
gpgme_error_t ret = gpgme_op_keylist_ext_start(ctx, pattern, secret_only, reserved);
if (ret)
liberror_gpgme_set_error("gpgme_op_keylist_ext_start", ret);
return ret;
}
|