summaryrefslogtreecommitdiffstats
path: root/apps/s_time.c
diff options
context:
space:
mode:
authorNan Xiao <nan@chinadtrace.org>2021-03-30 16:30:47 +0800
committerTomas Mraz <tomas@openssl.org>2021-04-07 13:02:37 +0200
commit1ac64327dfd8d20072a34e73116ab222d77a24d0 (patch)
tree0f3553c1eca157db6de6cf6a4602ab6475a820de /apps/s_time.c
parent86522324d2a398ad3ed2f648a66b62b0a6176258 (diff)
Remove unnecessary setting SSL_MODE_AUTO_RETRY
Since SSL_MODE_AUTO_RETRY is enabled by default, no need to set it explicitly. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14742)
Diffstat (limited to 'apps/s_time.c')
-rw-r--r--apps/s_time.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/s_time.c b/apps/s_time.c
index 60861642f5..251f16ebc3 100644
--- a/apps/s_time.c
+++ b/apps/s_time.c
@@ -246,7 +246,6 @@ int s_time_main(int argc, char **argv)
if ((ctx = SSL_CTX_new(meth)) == NULL)
goto end;
- SSL_CTX_set_mode(ctx, SSL_MODE_AUTO_RETRY);
SSL_CTX_set_quiet_shutdown(ctx, 1);
if (SSL_CTX_set_min_proto_version(ctx, min_version) == 0)
goto end;