From 03cb5c17703a7126f72888b57bbf49fe6830a118 Mon Sep 17 00:00:00 2001 From: Bert Melis Date: Mon, 15 Jul 2024 15:10:38 +0200 Subject: [PATCH] another var fix --- src/Transport/ClientPosix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Transport/ClientPosix.cpp b/src/Transport/ClientPosix.cpp index 38c7e8f..f3c9d78 100644 --- a/src/Transport/ClientPosix.cpp +++ b/src/Transport/ClientPosix.cpp @@ -70,7 +70,7 @@ bool ClientPosix::connect(const char* hostname, uint16_t port) { hints.ai_socktype = SOCK_STREAM; hints.ai_protocol = IPPROTO_TCP; - emc_log_i("connecting to %s:%d", host, port); + emc_log_i("Connecting to %s:%d", hostname, port); err = getaddrinfo(hostname, port_str, &hints, &addrs); if (err != 0) {