Check index.

This commit is contained in:
wb2osz 2024-10-29 19:41:35 +01:00
parent 44f576cb73
commit 5736b0f601
1 changed files with 3 additions and 1 deletions

View File

@ -1071,6 +1071,8 @@ void igate_send_rec_packet (int chan, packet_t recv_pp)
* Inputs: pp - Packet object. * Inputs: pp - Packet object.
* *
* chan - Radio channel where it was received. * chan - Radio channel where it was received.
* This will be -1 if from a beacon with sendto=ig
* so be careful if using as subscript.
* *
* Description: Duplicate detection is handled here. * Description: Duplicate detection is handled here.
* Suppress if same was sent recently. * Suppress if same was sent recently.
@ -1141,7 +1143,7 @@ static void send_packet_to_server (packet_t pp, int chan)
strlcat (msg, ",qAO,", sizeof(msg)); // new for version 1.4. strlcat (msg, ",qAO,", sizeof(msg)); // new for version 1.4.
} }
strlcat (msg, save_audio_config_p->mycall[chan], sizeof(msg)); strlcat (msg, save_audio_config_p->mycall[chan>=0 ? chan : 0], sizeof(msg));
strlcat (msg, ":", sizeof(msg)); strlcat (msg, ":", sizeof(msg));