aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/osmo-bsc/osmo_bsc_ctrl.c
diff options
context:
space:
mode:
authorDaniel Willmann <daniel@totalueberwachung.de>2011-08-25 16:37:45 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-09-11 16:20:46 +0200
commit6088f149b57fd21fd45f61f7976ed0fd61a2611e (patch)
treeae06555394c2b6989c767853063d727d0213ba87 /openbsc/src/osmo-bsc/osmo_bsc_ctrl.c
parent65924a5fe85c34a46ad8b163b43cd2aa4de3fa94 (diff)
libctrl, osmo-bsc: Get rid of net prefix
net is now implicit in the root node
Diffstat (limited to 'openbsc/src/osmo-bsc/osmo_bsc_ctrl.c')
-rw-r--r--openbsc/src/osmo-bsc/osmo_bsc_ctrl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/src/osmo-bsc/osmo_bsc_ctrl.c b/openbsc/src/osmo-bsc/osmo_bsc_ctrl.c
index ba8c1d264..5b2f4ffab 100644
--- a/openbsc/src/osmo-bsc/osmo_bsc_ctrl.c
+++ b/openbsc/src/osmo-bsc/osmo_bsc_ctrl.c
@@ -67,7 +67,7 @@ static void generate_location_state_trap(struct gsm_bts *bts, struct bsc_msc_con
}
cmd->id = "0";
- cmd->variable = talloc_asprintf(cmd, "net.bts.%i.location-state", bts->nr);
+ cmd->variable = talloc_asprintf(cmd, "bts.%i.location-state", bts->nr);
/* Prepare the location reply */
cmd->node = bts;
@@ -299,7 +299,7 @@ int bsc_ctrl_cmds_install()
rc = ctrl_cmd_install(CTRL_NODE_BTS, &cmd_bts_loc);
if (rc)
goto end;
- rc = ctrl_cmd_install(CTRL_NODE_NET, &cmd_net_rf_lock);
+ rc = ctrl_cmd_install(CTRL_NODE_ROOT, &cmd_net_rf_lock);
end:
return rc;
}