The following changes since commit d6225c1550827077c0c0f9e1b8816b4f35cd5304: Update README.rst to specify secure protocols where possible (2022-07-11 07:53:29 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 9c1c1a8d6a4f30eba9595da951d18db1685c03d8: engines/http: silence openssl 3.0 deprecation warnings (2022-07-19 13:21:19 -0600) ---------------------------------------------------------------- Giuseppe Baccini (1): Fixed misplaced goto in http.c Jens Axboe (1): engines/http: silence openssl 3.0 deprecation warnings Vincent Fu (1): Merge branch 'giubacc-misplaced-goto' engines/http.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) --- Diff of recent changes: diff --git a/engines/http.c b/engines/http.c index 696febe1..1de9e66c 100644 --- a/engines/http.c +++ b/engines/http.c @@ -29,6 +29,10 @@ #include "fio.h" #include "../optgroup.h" +/* + * Silence OpenSSL 3.0 deprecated function warnings + */ +#pragma GCC diagnostic ignored "-Wdeprecated-declarations" enum { FIO_HTTP_WEBDAV = 0, @@ -526,8 +530,8 @@ static enum fio_q_status fio_http_queue(struct thread_data *td, if (status == 100 || (status >= 200 && status <= 204)) goto out; log_err("DDIR_WRITE failed with HTTP status code %ld\n", status); - goto err; } + goto err; } else if (io_u->ddir == DDIR_READ) { curl_easy_setopt(http->curl, CURLOPT_READDATA, NULL); curl_easy_setopt(http->curl, CURLOPT_WRITEDATA, &_curl_stream);