vlr_sgs: fix VTY setting for SGs counter.

When trying to modify the value of an SGs counter (eg. ns11), then the
setting is never stored. The reason for this is that OsmoMSC uses the
wrong string table to compare the user input.

Related: OS#6008
Change-Id: I0358c1ec0026c37fda6db1f3af3145393df25cfd
This commit is contained in:
Philipp Maier 2023-10-23 17:33:45 +02:00
parent 1d3e48febf
commit 656354b818
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ static inline const char *vlr_sgs_state_timer_name(enum vlr_sgs_state_tmr Ts)
extern const struct value_string sgs_state_counter_names[];
static inline const char *vlr_sgs_state_counter_name(enum vlr_sgs_state_ctr Ns)
{
return get_value_string(sgs_state_timer_names, Ns);
return get_value_string(sgs_state_counter_names, Ns);
}
/* This callback function is called when an SGs location update is complete */