aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2019-12-01 13:19:51 +0100
committerHarald Welte <laforge@osmocom.org>2019-12-01 13:19:51 +0100
commite000050971dc37af4354727916db1960671f28f8 (patch)
treec8c057c1663947f6a9a1296d0cc533b169dbd7d3 /src
parent11bf0bc09cd4c42b117cd77bb45e236fbd5f33bc (diff)
check for osmo_ss7_init() error return value
Diffstat (limited to 'src')
-rw-r--r--src/osmo-msc/msc_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-msc/msc_main.c b/src/osmo-msc/msc_main.c
index 43a1fcbe4..e7570cde5 100644
--- a/src/osmo-msc/msc_main.c
+++ b/src/osmo-msc/msc_main.c
@@ -523,7 +523,7 @@ int main(int argc, char **argv)
/* For --version, vty_init() must be called before handling options */
vty_init(&msc_vty_info);
- osmo_ss7_init();
+ OSMO_ASSERT(osmo_ss7_init() == 0);
osmo_ss7_vty_init_asp(tall_msc_ctx);
osmo_sccp_vty_init();