Bug in http.c
Brought to you by:
cleong
In the http_send_authorization_header_field() method,
the following line is incorrect:
algorithm = http_find_auth_parameter(connection-
>auth_info, "opaque", "MD5");
and should be:
algorithm = http_find_auth_parameter(connection-
>auth_info, "algorithm", "MD5");
This causes all sorts of access permission problems.
Rob