diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2016-06-04 11:36:34 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2016-06-04 11:36:34 +0200 |
commit | 4e661c45b0e5633f38b6f42d4a8beaa8f0ce7db6 (patch) | |
tree | 7d8aae795cecbd05a126c75d0887cedacca37d1d /lib/includes | |
parent | 8a8aaf303684d88a0d9944571a17f87f1ef0171d (diff) | |
download | gnutls-4e661c45b0e5633f38b6f42d4a8beaa8f0ce7db6.tar.gz |
pkcs12: corrected return type of gnutls_pkcs12_bag_get_type()
Diffstat (limited to 'lib/includes')
-rw-r--r-- | lib/includes/gnutls/pkcs12.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/includes/gnutls/pkcs12.h b/lib/includes/gnutls/pkcs12.h index b75efa61c1..e7864c4f14 100644 --- a/lib/includes/gnutls/pkcs12.h +++ b/lib/includes/gnutls/pkcs12.h @@ -109,7 +109,7 @@ typedef enum gnutls_pkcs12_bag_type_t { GNUTLS_BAG_UNKNOWN = 20 } gnutls_pkcs12_bag_type_t; -gnutls_pkcs12_bag_type_t +int gnutls_pkcs12_bag_get_type(gnutls_pkcs12_bag_t bag, unsigned indx); int gnutls_pkcs12_bag_get_data(gnutls_pkcs12_bag_t bag, unsigned indx, gnutls_datum_t * data); |