aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2020-06-08 17:03:52 +0200
committerlaforge <laforge@osmocom.org>2020-06-18 11:55:52 +0000
commit20a6641a3f331b35be7b3743e5c31c68a28af9d0 (patch)
tree17a5279e09e7cde114c6add2cfc5885239f4eef5
parent0ec7b23ee3a165ea402e49ae430f34e2309c92a4 (diff)
msc_vty: remove emergency-call command from network
when the VTY write the config file ist prints the configuration line for emergency-call in network and in msc, however the presence of the configuration line in network leads to a parsing error on msc startup. The vty command probably got moved to node msc and it was forgotten to remove the printing from network. Change-Id: I4f3dac27723e7852f8f049fcfca5cccdc027734d Related: OS#4548
-rw-r--r--src/libmsc/msc_vty.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/libmsc/msc_vty.c b/src/libmsc/msc_vty.c
index a629b5cb7..a92609d7f 100644
--- a/src/libmsc/msc_vty.c
+++ b/src/libmsc/msc_vty.c
@@ -402,11 +402,6 @@ static int config_write_net(struct vty *vty)
gsmnet->tz.hr, gsmnet->tz.mn, VTY_NEWLINE);
}
- if (gsmnet->emergency.route_to_msisdn) {
- vty_out(vty, " emergency-call route-to-msisdn %s%s",
- gsmnet->emergency.route_to_msisdn, VTY_NEWLINE);
- }
-
if (!gsmnet->call_waiting)
vty_out(vty, " no call-waiting%s", VTY_NEWLINE);