osmo_ss7_vty: Fix config file writing for xUA listeners

We so far generated un-parseable config files..

Change-Id: Iff6940ef6f52739b6f30a152487038cb0220da43
This commit is contained in:
Harald Welte 2017-04-14 16:36:52 +02:00
parent e7589d107c
commit fa049a4914
1 changed files with 1 additions and 1 deletions

View File

@ -454,7 +454,7 @@ DEFUN(xua_accept_dyn_asp, xua_accept_dyn_asp_cmd,
static void write_one_xua(struct vty *vty, struct osmo_xua_server *xs)
{
vty_out(vty, " %s %u%s",
vty_out(vty, " listen %s %u%s",
get_value_string(osmo_ss7_asp_protocol_vals, xs->cfg.proto),
xs->cfg.local.port, VTY_NEWLINE);
vty_out(vty, " local-ip %s%s", xs->cfg.local.host, VTY_NEWLINE);