From 4dabcf4c48be33b92a430b1f49670d86a8ea5b80 Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Fri, 13 Jun 2025 10:33:51 -0400 Subject: [PATCH] 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 --- lib/setopt.c | 1 - 1 file changed, 1 deletion(-) 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))