From: Nikos Mavrogiannopoulos Date: Wed, 22 May 2002 10:16:32 +0000 (+0000) Subject: corrected function declaration X-Git-Tag: gnutls_0_4_3~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b3c59fbb903cc895fafdc4076c17eaf35ec57f87;p=thirdparty%2Fgnutls.git corrected function declaration --- 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; }