2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-22 01:51:26 +00:00

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 <fnordahl@ubuntu.com>
Signed-off-by: Eelco Chaudron <echaudro@redhat.com>
This commit is contained in:
Frode Nordahl 2025-02-16 19:52:04 +00:00 committed by Eelco Chaudron
parent ac32bbe2c7
commit fd021c97e7

View File

@ -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])