Change the source number generation.

This commit is contained in:
Jonathan Naylor
2024-02-03 21:07:22 +00:00
parent 4b89941eaa
commit 935e189a37

View File

@@ -525,7 +525,8 @@ bool CFMIAXNetwork::writeNew()
#if defined(DEBUG_IAX)
LogDebug("IAX NEW sent");
#endif
unsigned short sCall = ++m_sCallNo | 0x8000U;
m_sCallNo++;
unsigned short sCall = m_sCallNo | 0x8000U;
m_timestamp.start();