aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2017-08-09 18:57:48 +0200
committerPhilipp Maier <pmaier@sysmocom.de>2017-08-09 18:57:48 +0200
commit4e73ea88cd463246f8ee95ba5b9e31bdd693d804 (patch)
tree154fefc8e4015f11913ffabb3d0a0004fe78c7a5
parent2ba2b7dd068ae208f60e010aacb05372ca25cbb2 (diff)
fixup: osmo_ss7_vty_init_asp() instead of osmo_ss7_vty_init_sg()
-rw-r--r--openbsc/src/osmo-bsc/osmo_bsc_main.c4
-rw-r--r--openbsc/src/osmo-msc/msc_main.c4
2 files changed, 2 insertions, 6 deletions
diff --git a/openbsc/src/osmo-bsc/osmo_bsc_main.c b/openbsc/src/osmo-bsc/osmo_bsc_main.c
index dd1276eba..6eec5eedd 100644
--- a/openbsc/src/osmo-bsc/osmo_bsc_main.c
+++ b/openbsc/src/osmo-bsc/osmo_bsc_main.c
@@ -219,9 +219,7 @@ int main(int argc, char **argv)
/* Initalize SS7 */
osmo_ss7_init();
- /* FIXME: this must be _asp() and not _sg(), however fixing this
- * now will break VTY! */
- osmo_ss7_vty_init_sg(tall_bsc_ctx);
+ osmo_ss7_vty_init_asp(tall_bsc_ctx);
INIT_LLIST_HEAD(&access_lists);
diff --git a/openbsc/src/osmo-msc/msc_main.c b/openbsc/src/osmo-msc/msc_main.c
index 57620ed19..a367b08f9 100644
--- a/openbsc/src/osmo-msc/msc_main.c
+++ b/openbsc/src/osmo-msc/msc_main.c
@@ -414,9 +414,7 @@ int main(int argc, char **argv)
vty_init(&msc_vty_info);
osmo_ss7_init();
- /* FIXME: this must be _asp() and not _sg(), however fixing this
- * now will break VTY! */
- osmo_ss7_vty_init_sg(tall_msc_ctx);
+ osmo_ss7_vty_init_asp(tall_msc_ctx);
/* Parse options */
handle_options(argc, argv);