Skip to content

Commit

Permalink
Fix rigctl/rigctld interaction regression from issue 773
Browse files Browse the repository at this point in the history
  • Loading branch information
mdblack98 committed Aug 29, 2021
1 parent f6b57e1 commit a0672e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/rigctl_parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -1006,10 +1006,10 @@ int rigctl_parse(RIG *my_rig, FILE *fin, FILE *fout, char *argv[], int argc,
{
if (debugflow) { rig_debug(RIG_DEBUG_TRACE, "%s: debug7\n", __func__); }

arg1[0] = fgetc(fin);
arg1[1] = 0;
arg2[0] = fgetc(fin);
arg2[1] = 0;

if (prompt && arg1[0] == 0x0a)
if (prompt && arg2[0] == 0x0a)
{
if (debugflow) { rig_debug(RIG_DEBUG_TRACE, "%s: debug8\n", __func__); }

Expand Down

0 comments on commit a0672e4

Please sign in to comment.