blob: 4a52d4c65b3511f703ac18371144c12e5d270135 (
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_key_from_uid(gpgme_key_t *key, const char *name)
{
gpgme_error_t ret = gpgme_key_from_uid(key, name);
if (ret)
liberror_gpgme_set_error("gpgme_key_from_uid", ret);
return ret;
}
|