aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2023-01-04 13:53:57 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2023-01-04 13:53:57 +0100
commite5614e434fddbbfc9f219cdc0ce12109d9441d94 (patch)
treec6ab079953325b1684d53b8c34e4005d2ef3a7a1 /src
parentb0b582bff83e4afbe4cbeb1e35bd54ce1d7559a8 (diff)
vty: Fix wrong value_string used to print llme state
Diffstat (limited to 'src')
-rw-r--r--src/sgsn/gprs_llc_vty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sgsn/gprs_llc_vty.c b/src/sgsn/gprs_llc_vty.c
index 24e404b73..124daa337 100644
--- a/src/sgsn/gprs_llc_vty.c
+++ b/src/sgsn/gprs_llc_vty.c
@@ -79,7 +79,7 @@ static void vty_dump_llme(struct vty *vty, struct gprs_llc_llme *llme)
get_value_string(gprs_cipher_names, llme->algo), llme->iov_ui,
llme->cksn, llme->age_timestamp == GPRS_LLME_RESET_AGE ? 0 :
(int)(now_tp.tv_sec - (time_t)llme->age_timestamp),
- get_value_string(gprs_llc_state_strs, llme->state), VTY_NEWLINE);
+ get_value_string(gprs_llc_llme_state_names, llme->state), VTY_NEWLINE);
for (i = 0; i < ARRAY_SIZE(valid_sapis); i++) {
struct gprs_llc_lle *lle;