1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-11-04 08:17:17 -05:00

[http] changed declaration of done_http

This commit is contained in:
Witold Filipczyk 2022-02-17 21:32:37 +01:00
parent 2170d79036
commit 7fc4be7689

View File

@ -231,7 +231,7 @@ static union option_info http_options[] = {
NULL_OPTION_INFO,
};
static void done_http();
static void done_http(struct module *mod);
struct module http_protocol_module = struct_module(
/* name: */ N_("HTTP"),
@ -245,7 +245,7 @@ struct module http_protocol_module = struct_module(
static void
done_http(void)
done_http(struct module *mod)
{
mem_free_if(proxy_auth.realm);
mem_free_if(proxy_auth.nonce);