mirror of
https://github.com/g4klx/DAPNETGateway.git
synced 2026-08-26 12:32:45 -04:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
d55ed53501
2 changed files with 4 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
3
Makefile
3
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 *~
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue