1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-05 09:13:14 +02:00

relay: remove request from some function arguments (issue #2066)

This commit is contained in:
Sébastien Helleu
2024-01-31 08:57:20 +01:00
parent 83567fd871
commit 89aeb03a13
7 changed files with 91 additions and 122 deletions
+2 -3
View File
@@ -133,10 +133,9 @@ relay_api_unhook_signals (struct t_relay_client *client)
*/
void
relay_api_recv_http (struct t_relay_client *client,
struct t_relay_http_request *request)
relay_api_recv_http (struct t_relay_client *client)
{
relay_api_protocol_recv_http (client, request);
relay_api_protocol_recv_http (client);
}
/*