projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d3fdc27
)
Avoid compiler complaint about mismatched function signatures
author
Richard Levitte
<levitte@openssl.org>
Wed, 20 Apr 2005 10:02:16 +0000
(10:02 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Wed, 20 Apr 2005 10:02:16 +0000
(10:02 +0000)
(void * != RSA *)
crypto/evp/evp.h
patch
|
blob
|
history
diff --git
a/crypto/evp/evp.h
b/crypto/evp/evp.h
index 209e16c1be1d7343b90e5f91173332af2fce578a..69ed17952fb86549f04f8ed9dbb909c1b7f5cfab 100644
(file)
--- a/
crypto/evp/evp.h
+++ b/
crypto/evp/evp.h
@@
-277,8
+277,8
@@
typedef int evp_verify_method(int type,const unsigned char *m,
(evp_verify_method *)RSA_verify, \
{EVP_PKEY_RSA,EVP_PKEY_RSA2,0,0}
#define EVP_PKEY_RSA_ASN1_OCTET_STRING_method \
- RSA_sign_ASN1_OCTET_STRING, \
- RSA_verify_ASN1_OCTET_STRING, \
+
(evp_sign_method *)
RSA_sign_ASN1_OCTET_STRING, \
+
(evp_verify_method *)
RSA_verify_ASN1_OCTET_STRING, \
{EVP_PKEY_RSA,EVP_PKEY_RSA2,0,0}
#else
#define EVP_PKEY_RSA_method EVP_PKEY_NULL_method