Hopefully fix the display of IP addresses in the reflector.

This commit is contained in:
Jonathan Naylor 2021-09-12 20:24:14 +01:00
parent c367659664
commit ba9a11615a
3 changed files with 11 additions and 11 deletions

View File

@ -357,7 +357,7 @@ void CP25Reflector::dumpRepeaters() const
char buffer[80U];
LogMessage(" %s: %s %u/%u", (*it)->m_callsign.c_str(),
CUDPSocket::display((*it)->m_addr, buffer, 80U),
(*it)->m_timer.getTimeout(),
(*it)->m_timer.getTimer(),
(*it)->m_timer.getTimeout());
}
}

View File

@ -19,6 +19,6 @@
#if !defined(VERSION_H)
#define VERSION_H
const char* VERSION = "20210824";
const char* VERSION = "20210912";
#endif