aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2013-03-18 16:29:46 +0100
committerHarald Welte <laforge@gnumonks.org>2013-03-18 18:05:24 +0100
commit118eb43ba52340f3bfaaf254e00bbd5c07681b57 (patch)
tree21fe4105286ca82b5c7b8d6c4f2dac23ba2e2719
parentcdc5a4dc384c91d5102376e08e3f34523e50b028 (diff)
fixup e2cde1f48379657402332b5a95d4ce242d63069a
-rw-r--r--src/osmo-bts-sysmo/sysmobts_vty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bts-sysmo/sysmobts_vty.c b/src/osmo-bts-sysmo/sysmobts_vty.c
index a9b7a5e6..feb271a1 100644
--- a/src/osmo-bts-sysmo/sysmobts_vty.c
+++ b/src/osmo-bts-sysmo/sysmobts_vty.c
@@ -195,7 +195,7 @@ DEFUN(cfg_trx_min_qual_norm, cfg_trx_min_qual_norm_cmd,
struct gsm_bts_trx *trx = vty->index;
struct femtol1_hdl *fl1h = trx_femtol1_hdl(trx);
- fl1h->min_qual_rach = atof(argv[0]) / 10.0f;
+ fl1h->min_qual_norm = atof(argv[0]) / 10.0f;
return CMD_SUCCESS;
}