From: Daniel McCarney Date: Fri, 13 Jun 2025 14:33:51 +0000 (-0400) Subject: lib: remove superfluous setopt break for CURLOPT_SSL_FALSESTART X-Git-Tag: curl-8_15_0~269 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4dabcf4c48be33b92a430b1f49670d86a8ea5b80;p=thirdparty%2Fcurl.git lib: remove superfluous setopt break for CURLOPT_SSL_FALSESTART Reported-by: 4lan.m Ref: https://github.com/curl/curl/commit/1e2e808defe6850295baa002d07cde9a129ec791#r159957160 Follow-up to 1e2e808defe6850295baa002d07cde9a129ec791 #17595 Closes #17615 --- diff --git a/lib/setopt.c b/lib/setopt.c index 18f3ab3e92..ab17b1e36e 100644 --- a/lib/setopt.c +++ b/lib/setopt.c @@ -1084,7 +1084,6 @@ static CURLcode setopt_long(struct Curl_easy *data, CURLoption option, * No TLS backends support false start anymore. */ return CURLE_NOT_BUILT_IN; - break; case CURLOPT_CERTINFO: #ifdef USE_SSL if(Curl_ssl_supports(data, SSLSUPP_CERTINFO))