diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2002-05-22 10:16:32 +0000 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2002-05-22 10:16:32 +0000 |
commit | b3c59fbb903cc895fafdc4076c17eaf35ec57f87 (patch) | |
tree | 69eb777ee59b93e5c45b5295af1023cf3c3b866b /libextra | |
parent | 9e26f581e362a7a4671bc4ac85a0a4dd57ffd045 (diff) | |
download | gnutls-b3c59fbb903cc895fafdc4076c17eaf35ec57f87.tar.gz |
corrected function declaration
Diffstat (limited to 'libextra')
-rw-r--r-- | libextra/gnutls_openpgp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libextra/gnutls_openpgp.c b/libextra/gnutls_openpgp.c index 93cd8ff277..eacd34f296 100644 --- a/libextra/gnutls_openpgp.c +++ b/libextra/gnutls_openpgp.c @@ -1145,7 +1145,7 @@ leave: * the fingerprint can be 16 or 20 bytes. **/ int -gnutls_openpgp_fingerprint(const gnutls_datum *cert, byte *fpr, size_t *fprlen) +gnutls_openpgp_fingerprint(const gnutls_datum *cert, opaque *fpr, size_t *fprlen) { CDK_KBNODE kb_pk = NULL, pkt; PKT_public_key *pk = NULL; @@ -1575,7 +1575,7 @@ gnutls_openpgp_verify_key(const char* ign, const gnutls_datum* keyring, } int -gnutls_openpgp_fingerprint(const gnutls_datum *cert, byte *fpr, size_t *fprlen) +gnutls_openpgp_fingerprint(const gnutls_datum *cert, opaque *fpr, size_t *fprlen) { return GNUTLS_E_UNIMPLEMENTED_FEATURE; } |