From 823f97cf1229d92720251d027e74181619fb8560 Mon Sep 17 00:00:00 2001 From: Michael Black W9MDB Date: Wed, 20 May 2020 09:39:43 -0500 Subject: [PATCH] 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 --- tests/rigctl_parse.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/rigctl_parse.c b/tests/rigctl_parse.c index 839dd62fe..8f0195b00 100644 --- a/tests/rigctl_parse.c +++ b/tests/rigctl_parse.c @@ -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; }