From 0589c3ecf13ea910dd0d2c4d00d48cfaddaa2c36 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Wed, 2 Nov 2022 20:12:54 +0100 Subject: [PATCH] vty: Fix timers not printed when dumping running-config Change-Id: I129bf412cd4b74e9f515411ef8f812a8261e57b2 --- src/osmo-hnbgw/hnbgw_vty.c | 1 + 1 file changed, 1 insertion(+) 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 @@ static int config_write_hnbgw(struct vty *vty) 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; }