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:
parent
4da58dde41
commit
f1a5f5ab97
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue