aboutsummaryrefslogtreecommitdiffstats
path: root/op_import_keys.c
blob: 278d08f782e0bd22693b675ce528f14adee64bc2 (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_import_keys(gpgme_ctx_t ctx, gpgme_key_t keys[])
{
	gpgme_error_t ret = gpgme_op_import_keys(ctx, keys);
	if (ret)
		liberror_gpgme_set_error("gpgme_op_import_keys", ret);
	return ret;
}