aboutsummaryrefslogtreecommitdiffstats
path: root/src/libvlr
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2024-02-14 17:53:45 +0700
committerfixeria <vyanitskiy@sysmocom.de>2024-03-01 07:11:47 +0000
commit398cb299f974ab198e62598f724666f52f87234e (patch)
tree7a90c31eb16d07287d6e201aef129cf2f8faae81 /src/libvlr
parentd8b75fbfc8c247348b23f700ad698e93dbdefa8c (diff)
libvlr: fix auth_fsm_term(): use proper value-string for cause
Diffstat (limited to 'src/libvlr')
-rw-r--r--src/libvlr/vlr_auth_fsm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libvlr/vlr_auth_fsm.c b/src/libvlr/vlr_auth_fsm.c
index 5207464d8..b5052b072 100644
--- a/src/libvlr/vlr_auth_fsm.c
+++ b/src/libvlr/vlr_auth_fsm.c
@@ -257,7 +257,7 @@ static void auth_fsm_term(struct osmo_fsm_inst *fi, enum auth_fsm_result result,
LOGPFSM(fi, "Authentication terminating with result %s%s%s\n",
auth_fsm_result_str[result],
cause ? ", cause " : "",
- cause ? get_value_string(gsm48_gmm_cause_names, cause) : "");
+ cause ? gsm48_reject_value_name(cause) : "");
/* Do one final state transition (mostly for logging purpose)
* and set the parent_term_event according to result */