From 633dd4d001c269e7db63c9ec0c1efdfe186b6329 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 27 Jul 2026 10:47:03 +0200 Subject: [PATCH] fixup return --- tests/libtest/lib2017.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/libtest/lib2017.c b/tests/libtest/lib2017.c index 447dd93dff..de1493eff5 100644 --- a/tests/libtest/lib2017.c +++ b/tests/libtest/lib2017.c @@ -100,5 +100,5 @@ test_cleanup: curl_easy_cleanup(curl); curl_global_cleanup(); - return errors ? CURLE_BAD_FUNCTION_ARGUMENT : CURLE_OK; + return errors ? CURLE_BAD_FUNCTION_ARGUMENT : result; }