Skip to content

Commit

Permalink
AGW 'K' Monitor in Raw Format did not have 'Flag' field set with chan…
Browse files Browse the repository at this point in the history
…nel.
  • Loading branch information
wb2osz committed Jan 31, 2024
1 parent 7860480 commit 4af7b22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.c
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@ void server_send_rec_packet (int chan, packet_t pp, unsigned char *fbuf, int fl

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

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

if (debug_client) {
Expand Down

0 comments on commit 4af7b22

Please sign in to comment.