aboutsummaryrefslogblamecommitdiffstats
path: root/op_export.c
blob: 039b0f3a81e311a43d0b3b9bbcc296973508fb85 (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_op_export(gpgme_ctx_t ctx, const char *pattern, gpgme_export_mode_t mode, gpgme_data_t keydata)
{
	gpgme_error_t ret = gpgme_op_export(ctx, pattern, mode, keydata);
	if (ret)
		liberror_gpgme_set_error("gpgme_op_export", ret);
	return ret;
}