aboutsummaryrefslogtreecommitdiffstats
path: root/op_conf_dir.c
blob: a9752e2fbea323b8ca330c2bcd9f8c26f68d784c (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_conf_dir(gpgme_ctx_t ctx, const char *what, char **result)
{
	gpgme_error_t ret = gpgme_op_conf_dir(ctx, what, result);
	if (ret)
		liberror_gpgme_set_error("gpgme_op_conf_dir", ret);
	return ret;
}