diff options
author | Richard Levitte <levitte@openssl.org> | 2015-06-21 18:51:18 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2015-06-21 21:45:47 +0200 |
commit | a3f9286556d6d78c1800caae97a9328afb2557e6 (patch) | |
tree | 6f7c29d321dcec86f2ff2a66c36040f850cc9cfc /crypto | |
parent | f6a103133abefd7795260af3f439d84430331e33 (diff) | |
download | openssl-new-a3f9286556d6d78c1800caae97a9328afb2557e6.tar.gz |
Cleanup mttest.c : remove MS_CALLBACK
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/threads/mttest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/threads/mttest.c b/crypto/threads/mttest.c index 3218c32924..8995b83c00 100644 --- a/crypto/threads/mttest.c +++ b/crypto/threads/mttest.c @@ -106,7 +106,7 @@ #define MAX_THREAD_NUMBER 100 -int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *xs); +int verify_callback(int ok, X509_STORE_CTX *xs); void thread_setup(void); void thread_cleanup(void); void do_threads(SSL_CTX *s_ctx, SSL_CTX *c_ctx); @@ -620,7 +620,7 @@ int doit(char *ctx[4]) return (0); } -int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx) +int verify_callback(int ok, X509_STORE_CTX *ctx) { char *s, buf[256]; |