6.0.24.2
This commit is contained in:
parent
0bdcbb4a69
commit
084ecb74f6
4
Bpq32.c
4
Bpq32.c
|
@ -1180,6 +1180,10 @@ along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
|
|||
// Fix processing of the Winlink API /account/exists response (82)
|
||||
// Fix sending CTEXT to L4 connects to Node when FULL_CTEXT is not set
|
||||
|
||||
// Version 6.0.25.?
|
||||
|
||||
// Fix 64 bit compatibility problems in SCSTracker and UZ7HO drivers
|
||||
|
||||
#define CKernel
|
||||
|
||||
#include "Versions.h"
|
||||
|
|
|
@ -1426,7 +1426,7 @@ reinit:
|
|||
|
||||
buffptr = Q_REM(&TNC->PortRecord->UI_Q);
|
||||
|
||||
datalen = buffptr->LENGTH - 7;
|
||||
datalen = buffptr->LENGTH - MSGHDDRLEN;
|
||||
Buffer = &buffptr->DEST[0]; // Raw Frame
|
||||
|
||||
Buffer[datalen] = 0;
|
||||
|
|
2654
SCSTracker.c.bak
2654
SCSTracker.c.bak
File diff suppressed because it is too large
Load Diff
|
@ -840,7 +840,7 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
|||
|
||||
Sock = TNCInfo[MasterPort[port]]->TCPSock;
|
||||
|
||||
MsgLen = buffptr->LENGTH - 6; // 7 Header, need extra Null
|
||||
MsgLen = buffptr->LENGTH - (MSGHDDRLEN - 1); // Need extra Null
|
||||
buffptr->LENGTH = 0; // Need a NULL on front
|
||||
Buffer = &buffptr->DEST[0]; // Raw Frame
|
||||
Buffer--; // Need to send an extra byte on front
|
||||
|
|
3130
UZ7HODrv.c.bak
3130
UZ7HODrv.c.bak
File diff suppressed because it is too large
Load Diff
|
@ -10,8 +10,8 @@
|
|||
|
||||
#endif
|
||||
|
||||
#define KVers 6,0,24,1
|
||||
#define KVerstring "6.0.24.1\0"
|
||||
#define KVers 6,0,24,2
|
||||
#define KVerstring "6.0.24.2\0"
|
||||
|
||||
#ifdef CKernel
|
||||
|
||||
|
|
Loading…
Reference in New Issue