aboutsummaryrefslogblamecommitdiffstats
path: root/signers_add.c
blob: 302acbaef7135cf8cf025b642093d0e9656db3e3 (plain) (tree)
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_signers_add(gpgme_ctx_t ctx, const gpgme_key_t key)
{
	gpgme_error_t ret = gpgme_signers_add(ctx, key);
	if (ret)
		liberror_gpgme_set_error("gpgme_signers_add", ret);
	return ret;
}