Fix get_separator rigctl output

pull/1045/head
Mike Black W9MDB 2022-05-29 12:06:03 -05:00
rodzic ae67384daf
commit fc26aa545f
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -5204,11 +5204,11 @@ declare_proto_rig(get_separator)
{
char buf[32];
if (isprint(rig_resp_sep))
if ((interactive && prompt) || (interactive && !prompt && ext_resp))
{
sprintf(buf, "%c", rig_resp_sep);
fprintf(fout, "%s: ", cmd->arg1);
}
else { sprintf(buf, "0x%x %p", rig_resp_sep, &rig_resp_sep); }
sprintf(buf, "0x%x", rig_resp_sep);
fprintf(fout, "%s\n", buf);
return RIG_OK;