Some rigctld clients like Log4OM don't like the extra VFO argument being returned from the "f" command so we are removing it for now

https://github.com/Hamlib/Hamlib/issues/255Z
pull/281/head
Michael Black W9MDB 2020-05-20 09:39:43 -05:00
rodzic fa14c7e9f0
commit 823f97cf12
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -1968,12 +1968,14 @@ declare_proto_rig(get_freq)
fprintf(fout, fmt, (int64_t)freq, resp_sep);
#if 0 // this extra VFO being returned was confusing Log4OM
if ((interactive && prompt) || (interactive && !prompt && ext_resp))
{
fprintf(fout, "%s: ", cmd->arg2); /* i.e. "Frequency" */
}
fprintf(fout, "%s%c", rig_strvfo(vfo), resp_sep);
#endif
return status;
}