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
This commit is contained in:
Kim - DG9VH 2020-08-13 20:01:54 +02:00 committed by GitHub
parent 87aea190bf
commit 8f31defe56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
}