blob: 2c6f602f0e49533ef3f12891320a076f41e41d8d (
plain) (
tree)
|
|
/* 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;
}
|