[gateway,wst] Update log about supported url types

This commit is contained in:
akarl10 2023-06-27 16:35:14 +02:00 committed by akallabeth
parent 1108d88fc4
commit d62b088527
1 changed files with 1 additions and 4 deletions

View File

@ -797,8 +797,7 @@ static BOOL http_response_parse_header_field(HttpResponse* response, const char*
if (!authScheme)
return FALSE;
/* it is not possible to store NULL in a ListDirectory */
authValue = "";
authValue = NULL;
}
status = ListDictionary_Add(response->Authenticates, authScheme, authValue);
@ -920,9 +919,7 @@ static BOOL http_response_parse_header(HttpResponse* response)
}
if (!http_response_parse_header_field(response, name, value))
{
goto fail;
}
*end_of_header = end_of_header_char;
}