From: Richard Levitte Date: Sat, 20 Apr 2002 10:22:01 +0000 (+0000) Subject: No point constifying an int. X-Git-Tag: OpenSSL_0_9_6d~20^2~4 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=ce94682ce103c1f5e319722ab14b745a314cb221 No point constifying an int. Notified by Bernd Matthes --- diff --git a/crypto/ecdsa/ecdsa.h b/crypto/ecdsa/ecdsa.h index 9b2a17f02d..8dbe872d64 100644 --- a/crypto/ecdsa/ecdsa.h +++ b/crypto/ecdsa/ecdsa.h @@ -144,7 +144,7 @@ int ECDSA_sign_setup(ECDSA *ecdsa, BN_CTX *ctx, BIGNUM **kinv, BIGNUM **rp); int ECDSA_sign(int type, const unsigned char *dgst, int dgst_len, unsigned char *sig, unsigned int *siglen, ECDSA *ecdsa); int ECDSA_verify(int type, const unsigned char *dgst, int dgst_len, const unsigned char *sig, - const int sig_len, ECDSA *ecdsa); + int sig_len, ECDSA *ecdsa); int ECDSA_up_ref(ECDSA *ecdsa); void ECDSA_free(ECDSA *a); int ECDSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,