From f1a5f5ab97531d8a0a135e4b849c6620dca35058 Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Sat, 25 Nov 2023 12:30:08 +0100 Subject: [PATCH] Remove accidental 'else' that caused modulemgr to freeze / make install to hang. ... when using url_unreal instead of url_curl. --- src/url_unreal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/url_unreal.c b/src/url_unreal.c index 6def6ccfd..a42dfc88f 100644 --- a/src/url_unreal.c +++ b/src/url_unreal.c @@ -932,7 +932,7 @@ void https_done(Download *handle) handle->file_fd = NULL; } - else if (!handle->got_response) + if (!handle->got_response) url_callback(handle->request, NULL, NULL, 0, "HTTPS response not received", 0, handle->request->callback_data); else {