aboutsummaryrefslogtreecommitdiffstats
path: root/op_passwd_start.c
blob: aaf8d3b7730bea73db5a766868733e65237dc919 (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_passwd_start(gpgme_ctx_t ctx, gpgme_key_t key, unsigned int flags)
{
	gpgme_error_t ret = gpgme_op_passwd_start(ctx, key, flags);
	if (ret)
		liberror_gpgme_set_error("gpgme_op_passwd_start", ret);
	return ret;
}