vty: Make sure to save timeslot mode in lowercase (as vty expects)

Change-Id: I9b11fbe3bf85b7096a3bd5f9b67168350e66a90a
This commit is contained in:
Harald Welte 2019-12-04 11:52:04 +01:00
parent a6d1211414
commit 50595fb9b5
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ static void config_write_recorder_line(struct vty *vty, unsigned int lnr)
mode_str = get_value_string(e1inp_ts_type_names, ts->type);
vty_out(vty, " line %u ts %u mode %s%s",
lnr, ts->num, mode_str, VTY_NEWLINE);
lnr, ts->num, osmo_str_tolower(mode_str), VTY_NEWLINE);
}
}