Add human-readable name of SGSN_AUTH_AUTHENTICATE

In commit 4adb136da6 we introduced
a new authentication state SGSN_AUTH_AUTHENTICATE, but we didn't
add that to auth_state_names[] resulting in log messages printing
it abut 'unknown 0x1' rather than something more useful.
This commit is contained in:
Harald Welte 2016-05-05 18:31:37 +02:00
parent 5f2524fe3d
commit 7c55ede8b1
1 changed files with 1 additions and 0 deletions

View File

@ -30,6 +30,7 @@ const struct value_string auth_state_names[] = {
{ SGSN_AUTH_ACCEPTED, "accepted"},
{ SGSN_AUTH_REJECTED, "rejected"},
{ SGSN_AUTH_UNKNOWN, "unknown"},
{ SGSN_AUTH_AUTHENTICATE, "authenticate" },
{ 0, NULL }
};