[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. 9f0d5951cb6ffab73343f
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2021-08-28 14:53:45
|
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 9f0d5951cb6ffab73343f4a43fb094a6b34fb846 (commit) from 1b52a009ef59424e53819bbafd2f2f0cda95bd99 (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 9f0d5951cb6ffab73343f4a43fb094a6b34fb846 Author: Mike Black W9MDB <mdb...@ya...> Date: Sat Aug 28 09:53:19 2021 -0500 Move Startup message after debug_set_level in rigctld.c diff --git a/tests/rigctld.c b/tests/rigctld.c index 64a29c7f..508ae8cd 100644 --- a/tests/rigctld.c +++ b/tests/rigctld.c @@ -269,12 +269,6 @@ int main(int argc, char *argv[]) int vfo_mode = 0; /* vfo_mode=0 means target VFO is current VFO */ int i; - rig_debug(RIG_DEBUG_VERBOSE, "%s(%d) Startup:", __FILE__, __LINE__); - - for (i = 0; i < argc; ++i) { rig_debug(RIG_DEBUG_VERBOSE, " %s", argv[i]); } - - rig_debug(RIG_DEBUG_VERBOSE, "%s", "\n"); - while (1) { int c; @@ -583,6 +577,13 @@ int main(int argc, char *argv[]) rig_set_debug(verbose); + rig_debug(RIG_DEBUG_VERBOSE, "%s(%d) Startup:", __FILE__, __LINE__); + + for (i = 0; i < argc; ++i) { rig_debug(RIG_DEBUG_VERBOSE, " %s", argv[i]); } + + rig_debug(RIG_DEBUG_VERBOSE, "%s", "\n"); + + rig_debug(RIG_DEBUG_VERBOSE, "rigctld %s\n", hamlib_version2); rig_debug(RIG_DEBUG_VERBOSE, "%s", "Report bugs to <ham...@li...>\n\n"); ----------------------------------------------------------------------- Summary of changes: tests/rigctld.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |