vty: Fix timers not printed when dumping running-config

Change-Id: I129bf412cd4b74e9f515411ef8f812a8261e57b2
This commit is contained in:
Pau Espin 2022-11-02 20:12:54 +01:00
parent 0e03070789
commit 0589c3ecf1
1 changed files with 1 additions and 0 deletions

View File

@ -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;
}