blob: e54771cd68c1a0bf65e7a57376de97dbb75be033 (
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_trustlist_start(gpgme_ctx_t ctx, const char *pattern, int max_level)
{
gpgme_error_t ret = gpgme_op_trustlist_start(ctx, pattern, max_level);
if (ret)
liberror_gpgme_set_error("gpgme_op_trustlist_start", ret);
return ret;
}
|