Skip to content

Commit c174d5e

Browse files
fnordahlchaudron
authored andcommitted
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: 249a9b5 ("system-traffic: Fix syntax errors in FTP and IPv6 curl calls.") Signed-off-by: Frode Nordahl <[email protected]> Signed-off-by: Eelco Chaudron <[email protected]>
1 parent b731551 commit c174d5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/system-common-macros.at

+1-1
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ m4_define([OVS_GET_HTTP],
280280
#
281281
m4_define([OVS_GET_FTP],
282282
[curl ftp://$1 --retry 3 --max-time 1 --retry-connrefused \
283-
--disable-eps -v $2]
283+
--disable-epsv -v $2]
284284
)
285285

286286
# OVS_GET_FTP_ACTIVE([url], [optional_curl_arguments])

0 commit comments

Comments
 (0)