X-Git-Url: https://git.exim.org/users/heiko/exim.git/blobdiff_plain/dcc5e2cbb4a253eea54c12320e54fb5d85d64e5f..6a9cf7f890226aa085842cd3d94b13e78ea31637:/src/src/smtp_in.c diff --git a/src/src/smtp_in.c b/src/src/smtp_in.c index aa1d5b09c..c0b6b2ac1 100644 --- a/src/src/smtp_in.c +++ b/src/src/smtp_in.c @@ -2934,7 +2934,7 @@ if (check_proxy_protocol_host()) #ifndef DISABLE_TLS if (tls_in.on_connect) { - if (tls_server_start(tls_require_ciphers, &user_msg) != OK) + if (tls_server_start(&user_msg) != OK) return smtp_log_tls_fail(user_msg); cmd_list[CMD_LIST_TLS_AUTH].is_mail_cmd = TRUE; } @@ -5490,7 +5490,7 @@ while (done <= 0) STARTTLS that don't add to the nonmail command count. */ s = NULL; - if ((rc = tls_server_start(tls_require_ciphers, &s)) == OK) + if ((rc = tls_server_start(&s)) == OK) { if (!tls_remember_esmtp) fl.helo_seen = fl.esmtp = fl.auth_advertised = f.smtp_in_pipelining_advertised = FALSE;