diff --git a/DAPNETGateway.vcxproj b/DAPNETGateway.vcxproj index efed402..95297c4 100644 --- a/DAPNETGateway.vcxproj +++ b/DAPNETGateway.vcxproj @@ -54,32 +54,32 @@ {55BEF4BF-9A1A-42F0-B1B7-7A0E05EBF0FF} Win32Proj DAPNETGateway - 10.0.17134.0 + 10.0 Application true - v141 + v142 Unicode Application false - v141 + v142 true Unicode Application true - v141 + v142 Unicode Application false - v141 + v142 true Unicode 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); } diff --git a/Makefile b/Makefile index e5c5dd9..ed2e756 100644 --- a/Makefile +++ b/Makefile @@ -14,5 +14,8 @@ DAPNETGateway: $(OBJECTS) %.o: %.cpp $(CXX) $(CFLAGS) -c -o $@ $< +install: + install -m 755 DAPNETGateway /usr/local/bin/ + clean: $(RM) DAPNETGateway *.o *.d *.bak *~