pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-hnbgw/+/29968 )
Change subject: vty: Fix timers not printed when dumping running-config ......................................................................
vty: Fix timers not printed when dumping running-config
Change-Id: I129bf412cd4b74e9f515411ef8f812a8261e57b2 --- M src/osmo-hnbgw/hnbgw_vty.c 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-hnbgw refs/changes/68/29968/1
diff --git a/src/osmo-hnbgw/hnbgw_vty.c b/src/osmo-hnbgw/hnbgw_vty.c index 2228260..5c2c42d 100644 --- a/src/osmo-hnbgw/hnbgw_vty.c +++ b/src/osmo-hnbgw/hnbgw_vty.c @@ -416,6 +416,7 @@ VTY_NEWLINE); if (g_hnb_gw->config.max_sccp_cr_payload_len != 999999) vty_out(vty, " sccp cr max-payload-len %u%s", g_hnb_gw->config.max_sccp_cr_payload_len, VTY_NEWLINE); + osmo_tdef_vty_groups_write(vty, " "); return CMD_SUCCESS; }