From c8bac5d32269ec89d2ab3dcc965b5f9d41147cb6 Mon Sep 17 00:00:00 2001 From: Evgeny Date: Tue, 31 Mar 2026 18:10:10 +0300 Subject: [PATCH] 1 --- src/config_parser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config_parser.c b/src/config_parser.c index ddaa4ec..28ae9f5 100644 --- a/src/config_parser.c +++ b/src/config_parser.c @@ -735,12 +735,12 @@ void print_config(const struct utun_config *cfg) { const struct global_config *g = &cfg->global; char ip_buffer[64]; - DEBUG_INFO(DEBUG_CATEGORY_CONFIG, "Global: priv_key=%s, pub_key=%s, node_id=%llx, tun_if=%s, tun_ip=%s, mtu=%d, keepalive=%d, test_mode=%d, net_debug=%d", + DEBUG_INFO(DEBUG_CATEGORY_CONFIG, "Global: priv_key=%s, pub_key=%s, node_id=%llx, tun_if=%s, tun_ip=%s, mtu=%d, keepalive=%d, test_mode=%d", g->my_private_key_hex, g->my_public_key_hex, (unsigned long long)g->my_node_id, g->tun_ifname[0] ? g->tun_ifname : "auto", ip_to_string(&g->tun_ip, ip_buffer, sizeof(ip_buffer)), - g->mtu, g->keepalive_timeout, g->tun_test_mode, g->net_debug); + g->mtu, g->keepalive_timeout, g->tun_test_mode); DEBUG_INFO(DEBUG_CATEGORY_CONFIG, "Servers:"); struct CFG_SERVER *s = cfg->servers;