From fd021c97e773418aa415397e2c59370fa99bc57b Mon Sep 17 00:00:00 2001 From: Frode Nordahl Date: Sun, 16 Feb 2025 19:52:04 +0000 Subject: [PATCH] tests: Use correct arguments to curl. The commit in the fixes tag erroneously changed the `--disable-epsv` argument to `--disable-eps`, which does not exist. Curiously the version of curl in the GitHub Actions images appears to accept the abbreviated option, whereas more recent versions of curl will fail with a hard error code 2. Fixes: 249a9b56e2b2 ("system-traffic: Fix syntax errors in FTP and IPv6 curl calls.") Signed-off-by: Frode Nordahl Signed-off-by: Eelco Chaudron --- tests/system-common-macros.at | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system-common-macros.at b/tests/system-common-macros.at index a8093ec4e..7f029dbb0 100644 --- a/tests/system-common-macros.at +++ b/tests/system-common-macros.at @@ -280,7 +280,7 @@ m4_define([OVS_GET_HTTP], # m4_define([OVS_GET_FTP], [curl ftp://$1 --retry 3 --max-time 1 --retry-connrefused \ - --disable-eps -v $2] + --disable-epsv -v $2] ) # OVS_GET_FTP_ACTIVE([url], [optional_curl_arguments])