summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2019-12-18 07:55:39 +0100
committerSébastien Helleu <flashcode@flashtux.org>2019-12-18 07:55:39 +0100
commit7e833ee60b6ef3fc251a5fc85b1edd7b700c92a6 (patch)
treed8e171246411734b5802226ae41ab59ae089ce0f /src/core
parent72da71880c597c6849326f22807ccfdee868bf7b (diff)
downloadweechat-7e833ee60b6ef3fc251a5fc85b1edd7b700c92a6.zip
core: add missing variable "proxy" in function hook_connect_print_log
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hook/wee-hook-connect.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hook/wee-hook-connect.c b/src/core/hook/wee-hook-connect.c
index aa87a5f4c..01694d86e 100644
--- a/src/core/hook/wee-hook-connect.c
+++ b/src/core/hook/wee-hook-connect.c
@@ -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));