From 8f31defe560e3d3e9d9bbdc32edbdaf21060e2a9 Mon Sep 17 00:00:00 2001 From: Kim - DG9VH Date: Thu, 13 Aug 2020 20:01:54 +0200 Subject: [PATCH] Changed Login-banner to correct program-name Thinking, DAPNETGateway would be more clearer than MMDVM, because it is not MMDVM doing the connection but DAPNETGateway --- DAPNETNetwork.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DAPNETNetwork.cpp b/DAPNETNetwork.cpp index e680ec1..781d293 100644 --- a/DAPNETNetwork.cpp +++ b/DAPNETNetwork.cpp @@ -65,7 +65,7 @@ bool CDAPNETNetwork::login() std::transform(m_callsign.begin(), m_callsign.end(), m_callsign.begin(), ::tolower); char login[200U]; - ::snprintf(login, 200, "[MMDVM v%s %s %s]\r\n", m_version, m_callsign.c_str(), m_authKey.c_str()); + ::snprintf(login, 200, "[DAPNETGateway v%s %s %s]\r\n", m_version, m_callsign.c_str(), m_authKey.c_str()); return write((unsigned char*)login); }