summaryrefslogtreecommitdiffstats
path: root/crypto/threads
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-06-21 18:51:18 +0200
committerRichard Levitte <levitte@openssl.org>2015-06-21 22:12:07 +0200
commit56f0733145aaecc09f1692bac965e3d2782b7ef6 (patch)
tree9ae47ce833a816786f1a0ff77861e88731ac4068 /crypto/threads
parent8e6bb99979b95ee8b878e22e043ceb78d79c32a1 (diff)
Cleanup mttest.c : remove MS_CALLBACK
Reviewed-by: Rich Salz <rsalz@openssl.org> (cherry picked from commit a3f9286556d6d78c1800caae97a9328afb2557e6)
Diffstat (limited to 'crypto/threads')
-rw-r--r--crypto/threads/mttest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/threads/mttest.c b/crypto/threads/mttest.c
index 8f67db6ee3..0c6ada2193 100644
--- a/crypto/threads/mttest.c
+++ b/crypto/threads/mttest.c
@@ -107,7 +107,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);
@@ -640,7 +640,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];