aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2020-01-18 05:54:08 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2020-01-18 05:54:43 +0700
commitb84463e36ac73e3664f1a7eaabb2e35bb191194a (patch)
treefca43ecff6cb443fec407ec4fa4ad120f1eebcfc
parent40e3f1e3d714c3f545efd08a60fbfef7d51b5670 (diff)
VTY: fix writing of custom timer values to a configuration file
Calling osmo_tdef_vty_write() twice: with and without the 'timer ' prefix definitely looks like a bug. After setting any timer to a custom (non-default) value, config_write_net() would generate an incorrect configuration file: $ osmo-bsc -c /tmp/osmo-bsc.cfg There is no such command. Error occurred during reading the below line: T10 10 Change-Id: I5cc893fb2077bb21f1f661e30a7ab2af1b9bd561
-rw-r--r--src/osmo-bsc/bsc_vty.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/osmo-bsc/bsc_vty.c b/src/osmo-bsc/bsc_vty.c
index 1195d6580..d1a268d81 100644
--- a/src/osmo-bsc/bsc_vty.c
+++ b/src/osmo-bsc/bsc_vty.c
@@ -1062,8 +1062,6 @@ static int config_write_net(struct vty *vty)
ho_vty_write_net(vty, gsmnet);
- osmo_tdef_vty_write(vty, gsmnet->T_defs, " ");
-
if (!gsmnet->dyn_ts_allow_tch_f)
vty_out(vty, " dyn_ts_allow_tch_f 0%s", VTY_NEWLINE);
if (gsmnet->tz.override != 0) {