Write configuration correctly from vty (alert notifications)

The default is [yes] alert-notifications, therefore write
"no alert-notifications" in the case that this has
been set, in order to preserve configuration after
write is called from vty.

Change-Id: I079aea96ee83fbf04f782dcab344d41a4ef04657
This commit is contained in:
Keith Whyte 2019-03-19 15:14:19 +01:00 committed by Keith Whyte
parent 81635d3400
commit 18f1138a6d
1 changed files with 2 additions and 2 deletions

View File

@ -582,8 +582,8 @@ static void config_write_esme_single(struct vty *vty, struct osmo_smpp_acl *acl)
vty_out(vty, " osmocom-extensions%s", VTY_NEWLINE);
if (acl->dcs_transparent)
vty_out(vty, " dcs-transparent%s", VTY_NEWLINE);
if (acl->alert_notifications)
vty_out(vty, " alert-notifications%s", VTY_NEWLINE);
if (!acl->alert_notifications)
vty_out(vty, " no alert-notifications%s", VTY_NEWLINE);
llist_for_each_entry(r, &acl->route_list, list)
write_esme_route_single(vty, r);