From 809c81b9f5098eed4310fb5f21b70b05e526643e Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 24 Oct 2022 09:54:08 +0200 Subject: [PATCH] unit1614: fix disabled-proxy build Follow-up to 1e9a538e05c01 Closes #9792 --- tests/unit/unit1614.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/unit1614.c b/tests/unit/unit1614.c index d64f651c8f..60285450c3 100644 --- a/tests/unit/unit1614.c +++ b/tests/unit/unit1614.c @@ -49,7 +49,7 @@ struct noproxy { }; UNITTEST_START -#ifdef DEBUGBUILD +#if defined(DEBUGBUILD) && !defined(CURL_DISABLE_PROXY) { int i; int err = 0; -- 2.47.3