diff options
author | Nils Larsch <nils@openssl.org> | 2005-08-14 23:48:33 +0200 |
---|---|---|
committer | Nils Larsch <nils@openssl.org> | 2005-08-14 23:48:33 +0200 |
commit | 4ebb342fcd90562bce999dcc0915b16f816fbbf2 (patch) | |
tree | 8fca5a4355d82d34612c249c1f9b6ae9b1ec59b9 /apps/s_time.c | |
parent | Eliminate reference to removed platform line. (diff) | |
download | openssl-4ebb342fcd90562bce999dcc0915b16f816fbbf2.tar.xz openssl-4ebb342fcd90562bce999dcc0915b16f816fbbf2.zip |
Let the TLSv1_method() etc. functions return a const SSL_METHOD
pointer and make the SSL_METHOD parameter in SSL_CTX_new,
SSL_CTX_set_ssl_version and SSL_set_ssl_method const.
Diffstat (limited to 'apps/s_time.c')
-rw-r--r-- | apps/s_time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/s_time.c b/apps/s_time.c index 904945e1a8..606de54a86 100644 --- a/apps/s_time.c +++ b/apps/s_time.c @@ -177,7 +177,7 @@ static char *tm_cipher=NULL; static int tm_verify = SSL_VERIFY_NONE; static int maxTime = SECONDS; static SSL_CTX *tm_ctx=NULL; -static SSL_METHOD *s_time_meth=NULL; +static const SSL_METHOD *s_time_meth=NULL; static char *s_www_path=NULL; static long bytes_read=0; static int st_bugs=0; |