1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-27 21:36:37 +02:00

core: add missing variable "proxy" in function hook_connect_print_log

This commit is contained in:
Sébastien Helleu
2019-12-18 07:55:39 +01:00
parent 72da71880c
commit 7e833ee60b
+1
View File
@@ -386,6 +386,7 @@ hook_connect_print_log (struct t_hook *hook)
log_printf (" connect data:");
log_printf (" callback. . . . . . . : 0x%lx", HOOK_CONNECT(hook, callback));
log_printf (" proxy . . . . . . . . : '%s'", HOOK_CONNECT(hook, proxy));
log_printf (" address . . . . . . . : '%s'", HOOK_CONNECT(hook, address));
log_printf (" port. . . . . . . . . : %d", HOOK_CONNECT(hook, port));
log_printf (" sock. . . . . . . . . : %d", HOOK_CONNECT(hook, sock));