From: Alberto Leiva Popper Date: Wed, 4 Oct 2023 20:57:32 +0000 (-0600) Subject: Fix usage of incorrect configuration field X-Git-Tag: 1.6.0~49 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=f937cb0730418c35034bd7d2f4590b190bb18221;p=thirdparty%2FFORT-validator.git Fix usage of incorrect configuration field --- 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);