diff options
author | Richard Levitte <levitte@openssl.org> | 2015-06-21 19:12:33 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2015-06-21 21:45:47 +0200 |
commit | f4c73bfe0ab7a0e8f82fe2947c0f77fe3d98acab (patch) | |
tree | 11ce46ac707e6e0abe964c7a1e4a3ced89bd9705 /crypto | |
parent | bb8abd6735e198de36c1eb9098a7f1516d156220 (diff) | |
download | openssl-new-f4c73bfe0ab7a0e8f82fe2947c0f77fe3d98acab.tar.gz |
Cleanup mttest.c : make ssl_method a pointer to const
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/threads/mttest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/threads/mttest.c b/crypto/threads/mttest.c index 01b587880b..0ad8d0fe18 100644 --- a/crypto/threads/mttest.c +++ b/crypto/threads/mttest.c @@ -189,7 +189,7 @@ int main(int argc, char *argv[]) SSL_CTX *c_ctx = NULL; char *scert = TEST_SERVER_CERT; char *ccert = TEST_CLIENT_CERT; - SSL_METHOD *ssl_method = TLS_method(); + const SSL_METHOD *ssl_method = TLS_method(); RAND_seed(rnd_seed, sizeof rnd_seed); |