blob: 2c6f602f0e49533ef3f12891320a076f41e41d8d (
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(gpgme_ctx_t ctx, gpgme_key_t key, unsigned int flags)
{
gpgme_error_t ret = gpgme_op_passwd(ctx, key, flags);
if (ret)
liberror_gpgme_set_error("gpgme_op_passwd", ret);
return ret;
}
|