[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. c717bb5d76939fa355c56
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2021-01-26 04:25:26
|
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 c717bb5d76939fa355c56dd84d850b1a3b889338 (commit) from 54fc0e10f63767dd7e63728cd1715559de761c99 (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 c717bb5d76939fa355c56dd84d850b1a3b889338 Author: Michael Black W9MDB <mdb...@ya...> Date: Mon Jan 25 22:24:57 2021 -0600 Improve -V version info diff --git a/tests/rigctl.c b/tests/rigctl.c index 799e5250..4411a6ea 100644 --- a/tests/rigctl.c +++ b/tests/rigctl.c @@ -177,7 +177,7 @@ int main(int argc, char *argv[]) exit(0); case 'V': - version(); + printf("rigctl %s\nLast commit was %s\n", hamlib_version, HAMLIBDATETIME); exit(0); case 'm': @@ -433,8 +433,7 @@ int main(int argc, char *argv[]) rig_set_debug(verbose); - rig_debug(RIG_DEBUG_VERBOSE, "rigctl %s\nLast commit was %s\n", hamlib_version, - HAMLIBDATETIME); + rig_debug(RIG_DEBUG_VERBOSE, "rigctl %s\nLast commit was %s\n", hamlib_version,HAMLIBDATETIME); rig_debug(RIG_DEBUG_VERBOSE, "%s", "Report bugs to <ham...@li...>\n\n"); diff --git a/tests/rigctld.c b/tests/rigctld.c index bd33cb8f..88cace9a 100644 --- a/tests/rigctld.c +++ b/tests/rigctld.c @@ -287,7 +287,7 @@ int main(int argc, char *argv[]) exit(0); case 'V': - version(); + printf("rigctl %s\nLast commit was %s\n", hamlib_version, HAMLIBDATETIME); exit(0); case 'm': ----------------------------------------------------------------------- Summary of changes: tests/rigctl.c | 5 ++--- tests/rigctld.c | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |