diff options
author | Simon Josefsson <simon@josefsson.org> | 2008-08-28 12:14:39 +0200 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2008-08-28 12:14:39 +0200 |
commit | 2d456754d32a5590a9314a925d79f0c9466708d2 (patch) | |
tree | 4d4b38d2e6eac9f04c4abb008a1ee96a8b7d33c9 /lib/x509/verify.c | |
parent | d27069c41628740388584ac409b8fbac7623af06 (diff) | |
download | gnutls-2d456754d32a5590a9314a925d79f0c9466708d2.tar.gz |
Fix warnings.
Diffstat (limited to 'lib/x509/verify.c')
-rw-r--r-- | lib/x509/verify.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/x509/verify.c b/lib/x509/verify.c index 34ba499137..041a450ebd 100644 --- a/lib/x509/verify.c +++ b/lib/x509/verify.c @@ -42,12 +42,10 @@ static int _gnutls_verify_certificate2 (gnutls_x509_crt_t cert, const gnutls_x509_crt_t * trusted_cas, int tcas_size, unsigned int flags, unsigned int *output); -int _gnutls_x509_verify_signature (const gnutls_datum_t * signed_data, - const gnutls_datum_t * signature, - gnutls_x509_crt_t issuer); -static - int is_crl_issuer (gnutls_x509_crl_t crl, gnutls_x509_crt_t issuer_cert); +static int is_crl_issuer (gnutls_x509_crl_t crl, + gnutls_x509_crt_t issuer_cert); + static int _gnutls_verify_crl2 (gnutls_x509_crl_t crl, const gnutls_x509_crt_t * trusted_cas, int tcas_size, unsigned int flags, |