Update MNCC field validation mask.

In c6921e5068, 0x4000 was added to the
possible MNCC field flags, but before this commit, using it would
result in an ERROR of "Unknown MNCC field mask 0x....."

Related: OS#5282
Change-Id: I9e7d224e7f2d6d2824b2466752b6e8c994ac5a3d
This commit is contained in:
Keith Whyte 2022-10-03 02:06:25 +01:00 committed by Vadim Yanitskiy
parent dfb1cb80ca
commit fdfe0c23ec
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ void mncc_set_cause(struct gsm_mncc *data, int loc, int val)
* MNCC validation code. Move to libosmocore once headers are merged
************************************************************************/
#define MNCC_F_ALL 0x3fff
#define MNCC_F_ALL 0x7fff
static int check_string_terminated(const char *str, unsigned int size)
{