summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Undheim <ruben.undheim@gmail.com>2018-11-15 21:56:28 +0100
committerRuben Undheim <ruben.undheim@gmail.com>2018-11-15 21:56:53 +0100
commit4b3c48e6dffd5e553d5632484ae5423fff1930c1 (patch)
tree4384c4fb1aadac75daab6656bc337b729c2cf647
parentc90b6ef86a622687b83f9b6f4f6d9dadcdcd8cd3 (diff)
Compare with -ENOTSUP to fix build on mipsel/mips64el/alpha
Gbp-Pq: Name 0002-Compare-with-ENOTSUP-to-fix-build-on-mipsel-mips64el.patch
-rw-r--r--tests/sgsn/sgsn_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sgsn/sgsn_test.c b/tests/sgsn/sgsn_test.c
index 0e5267b..12eda05 100644
--- a/tests/sgsn/sgsn_test.c
+++ b/tests/sgsn/sgsn_test.c
@@ -647,7 +647,7 @@ static void test_subscriber_gsup(void)
/* Inject DeleteSubscrData GSUP message */
last_updated_subscr = NULL;
rc = rx_gsup_message(delete_data_req, sizeof(delete_data_req));
- if (rc != -GMM_CAUSE_SEM_INCORR_MSG)
+ if (rc != -ENOTSUP)
printf("Unexpected response to DSD: %d\n", rc);
OSMO_ASSERT(last_updated_subscr == NULL);