[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. a0672e4f7e600f4ad9b88
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2021-08-29 15:02:20
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Hamlib -- Ham radio control libraries". The branch, master has been updated via a0672e4f7e600f4ad9b887c11880baa6e9ab4052 (commit) from f6b57e147daa2cb1c397d978a061d419dce64165 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a0672e4f7e600f4ad9b887c11880baa6e9ab4052 Author: Mike Black W9MDB <mdb...@ya...> Date: Sun Aug 29 09:59:47 2021 -0500 Fix rigctl/rigctld interaction regression from issue 773 https://github.com/Hamlib/Hamlib/issues/778 https://github.com/Hamlib/Hamlib/issues/773 diff --git a/tests/rigctl_parse.c b/tests/rigctl_parse.c index af2fb255..4d350be3 100644 --- a/tests/rigctl_parse.c +++ b/tests/rigctl_parse.c @@ -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__); } ----------------------------------------------------------------------- Summary of changes: tests/rigctl_parse.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |