fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-bsc/+/35789?usp=email )
Change subject: bsc_ctrl: do not overwrite rc in bsc_base_ctrl_cmds_install() ......................................................................
bsc_ctrl: do not overwrite rc in bsc_base_ctrl_cmds_install()
Change-Id: Ie4242be1d3e58d7e37938d9ccbeffcb2b442632f --- M src/osmo-bsc/bsc_ctrl.c 1 file changed, 10 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/89/35789/1
diff --git a/src/osmo-bsc/bsc_ctrl.c b/src/osmo-bsc/bsc_ctrl.c index 38698e7..cfba3e2 100644 --- a/src/osmo-bsc/bsc_ctrl.c +++ b/src/osmo-bsc/bsc_ctrl.c @@ -838,7 +838,7 @@ rc |= ctrl_cmd_install(CTRL_NODE_ROOT, &cmd_net_notification); rc |= ctrl_cmd_install(CTRL_NODE_ROOT, &cmd_net_inform_msc);
- rc = ctrl_cmd_install(CTRL_NODE_MSC, &cmd_msc_connection_status); + rc |= ctrl_cmd_install(CTRL_NODE_MSC, &cmd_msc_connection_status);
rc |= osmo_signal_register_handler(SS_L_INPUT, &bts_connection_status_trap_cb, net); rc |= osmo_signal_register_handler(SS_MSC, &msc_connection_status_trap_cb, net);