Skip to content

Commit 4af7b22

Browse files
committed
AGW 'K' Monitor in Raw Format did not have 'Flag' field set with channel.
1 parent 7860480 commit 4af7b22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -820,7 +820,7 @@ void server_send_rec_packet (int chan, packet_t pp, unsigned char *fbuf, int fl
820820

821821
/* Stick in extra byte for the "TNC" to use. */
822822

823-
agwpe_msg.data[0] = 0;
823+
agwpe_msg.data[0] = chan << 4; // Was 0. Fixed in 1.8.
824824
memcpy (agwpe_msg.data + 1, fbuf, (size_t)flen);
825825

826826
if (debug_client) {

0 commit comments

Comments
 (0)