From 023a5989f8bafec69c3650aca868c8b0cc4a6f3b Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Sun, 23 Oct 2022 20:45:01 -0700 Subject: [PATCH] [ntcore] Fix typo in NetworkServer client connect message (#4512) --- ntcore/src/main/native/cpp/NetworkServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntcore/src/main/native/cpp/NetworkServer.cpp b/ntcore/src/main/native/cpp/NetworkServer.cpp index a9ec7e49d1..a6e8b746d1 100644 --- a/ntcore/src/main/native/cpp/NetworkServer.cpp +++ b/ntcore/src/main/native/cpp/NetworkServer.cpp @@ -287,7 +287,7 @@ ServerConnection3::ServerConnection3(std::shared_ptr stream, m_info.remote_id = name; m_info.protocol_version = proto; m_server.AddConnection(this, m_info); - INFO("CONNECTED NT4 client '{}' (from {})", name, m_connInfo); + INFO("CONNECTED NT3 client '{}' (from {})", name, m_connInfo); }, [this](uint32_t repeatMs) { UpdatePeriodicTimer(repeatMs); });