From: Richard Levitte Date: Sun, 21 Jun 2015 17:12:33 +0000 (+0200) Subject: Cleanup mttest.c : make ssl_method a pointer to const X-Git-Tag: OpenSSL_1_0_1p~17 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1d6d4efea56c8b03a4fbb2b1b9e1f25447e752aa;p=oweals%2Fopenssl.git Cleanup mttest.c : make ssl_method a pointer to const Reviewed-by: Rich Salz (cherry picked from commit f4c73bfe0ab7a0e8f82fe2947c0f77fe3d98acab) Conflicts: crypto/threads/mttest.c --- diff --git a/crypto/threads/mttest.c b/crypto/threads/mttest.c index a2beba2976..7feffcc83c 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 = SSLv23_method(); + const SSL_METHOD *ssl_method = SSLv23_method(); RAND_seed(rnd_seed, sizeof rnd_seed);