1
0
Fork 0
mirror of https://github.com/pissnet/pissircd.git synced 2024-06-05 07:48:44 +01:00

Remove accidental 'else' that caused modulemgr to freeze / make install to hang.

... when using url_unreal instead of url_curl.
This commit is contained in:
Bram Matthys 2023-11-25 12:30:08 +01:00
parent 4da58dde41
commit f1a5f5ab97
No known key found for this signature in database
GPG key ID: BF8116B163EAAE98

View file

@ -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
{