aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2015-01-29 14:15:54 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2015-01-30 21:29:58 +0100
commit85ba655788b49dc83e33109368f81b7c3ea0b090 (patch)
tree12174987c0cc51f935c0ada58b7a225f51686a45
parent466cedd052427254d5f90b4bd02795129b2c60a4 (diff)
gprs/test: Fix GSUP Purge MS response messages
Currently the message types for these message types are wrong. This patch inserts the correct message types. Sponsored-by: On-Waves ehf
-rw-r--r--openbsc/tests/gprs/gprs_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/tests/gprs/gprs_test.c b/openbsc/tests/gprs/gprs_test.c
index e445ae7c8..0ae06e780 100644
--- a/openbsc/tests/gprs/gprs_test.c
+++ b/openbsc/tests/gprs/gprs_test.c
@@ -477,13 +477,13 @@ static void test_gsup_messages_dec_enc(void)
};
static const uint8_t purge_ms_err[] = {
- 0x0c,
+ 0x0d,
TEST_IMSI_IE,
0x02, 0x01, 0x03, /* Illegal MS */
};
static const uint8_t purge_ms_res[] = {
- 0x0c,
+ 0x0e,
TEST_IMSI_IE,
0x07, 0x00,
};