fix generating asp-role that can be parsed when re-opening config file

The ASP role must be saved in lowercas as the parser during config file
reading only understands it in lowercase.

Change-Id: I38b8e4d73121f8bf001037fdd2dd164113544d94
Closes: OS#4270
This commit is contained in:
Harald Welte 2019-11-19 01:30:36 +01:00
parent 737016a954
commit 7f94251fc8
1 changed files with 1 additions and 1 deletions

View File

@ -753,7 +753,7 @@ static void write_one_asp(struct vty *vty, struct osmo_ss7_asp *asp)
if (asp->cfg.qos_class)
vty_out(vty, " qos-class %u%s", asp->cfg.qos_class, VTY_NEWLINE);
if (asp->cfg.role_set_by_vty) {
vty_out(vty, " role %s%s", get_value_string(osmo_ss7_asp_role_names, asp->cfg.role),
vty_out(vty, " role %s%s", osmo_str_tolower(get_value_string(osmo_ss7_asp_role_names, asp->cfg.role)),
VTY_NEWLINE);
}
if (!asp->cfg.is_server)