Fix return value for rig_send_raw

pull/1523/head
Mike Black W9MDB 2024-03-03 22:40:43 -06:00
rodzic 2212c47ad7
commit bafb88432a
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -8701,7 +8701,9 @@ HAMLIB_EXPORT(int) rig_send_raw(RIG *rig, const unsigned char *send,
{
rig_debug(RIG_DEBUG_VERBOSE, "%s: simulating response for model %s\n",
__func__, rig->caps->model_name);
memcpy(reply, send, send_len);
retval = send_len;
return retval;
}
else
{