[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. 0575f9defd8d163a57bfe
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2021-01-29 12:53:12
|
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 0575f9defd8d163a57bfeec196d4e9c4e0ab2231 (commit) via f38f35beeb632ca2142370cbd11ff3ef09b4c6cd (commit) from 620c97fe1249d231cc65086a1a1405a8305f9819 (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 0575f9defd8d163a57bfeec196d4e9c4e0ab2231 Merge: 620c97fe f38f35be Author: Michael Black <mdb...@ya...> Date: Fri Jan 29 06:51:00 2021 -0600 Merge pull request #520 from dl1ycf/master corrected tx_rangelist bug commit f38f35beeb632ca2142370cbd11ff3ef09b4c6cd Author: c vw <dl...@da...> Date: Fri Jan 29 09:50:11 2021 +0100 corrected bug diff --git a/src/rig.c b/src/rig.c index 735ddc8f..e5ae4705 100644 --- a/src/rig.c +++ b/src/rig.c @@ -471,9 +471,9 @@ RIG *HAMLIB_API rig_init(rig_model_t rig_model) sizeof(struct freq_range_list)*FRQRANGESIZ); } - if (rs->tx_range_list == NULL) + if (rs->tx_range_list[0].startf == 0) { - rig_debug(RIG_DEBUG_ERR, "%s: rig does not have rx_range!!\n", __func__); + rig_debug(RIG_DEBUG_ERR, "%s: rig does not have tx_range!!\n", __func__); RETURNFUNC(NULL); } ----------------------------------------------------------------------- Summary of changes: src/rig.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |