From f937cb0730418c35034bd7d2f4590b190bb18221 Mon Sep 17 00:00:00 2001 From: Alberto Leiva Popper Date: Wed, 4 Oct 2023 14:57:32 -0600 Subject: [PATCH] Fix usage of incorrect configuration field --- src/http/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http/http.c b/src/http/http.c index 24d080a2..c838e5e1 100644 --- a/src/http/http.c +++ b/src/http/http.c @@ -416,7 +416,7 @@ http_download(struct rpki_uri *uri, bool *changed) changed = &__changed; *changed = false; - if (!config_get_rsync_enabled()) + if (!config_get_http_enabled()) return 0; /* Skip; caller will work with existing cache. */ error = cache_tmpfile(&tmp_file_name); -- 2.47.2