aboutsummaryrefslogtreecommitdiffstats
path: root/set_ctx_flag.c
blob: 4dd79a198909cd43b1cbece0111964dc697c78b4 (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_set_ctx_flag(gpgme_ctx_t ctx, const char *name, const char *value)
{
	gpgme_error_t ret = gpgme_set_ctx_flag(ctx, name, value);
	if (ret)
		liberror_gpgme_set_error("gpgme_set_ctx_flag", ret);
	return ret;
}