aboutsummaryrefslogtreecommitdiffstats
path: root/data_set_flag.c
blob: 6c0f2d1575cfcd743579dd46732fa3e7b781c64a (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_data_set_flag(gpgme_data_t dh, const char *name, const char *value)
{
	gpgme_error_t ret = gpgme_data_set_flag(dh, name, value);
	if (ret)
		liberror_gpgme_set_error("gpgme_data_set_flag", ret);
	return ret;
}