Hello Ruben Undheim,
I'd like you to do a code review. Please visit
https://gerrit.osmocom.org/c/osmo-sgsn/+/14816
to review the following change.
Change subject: Compare with -ENOTSUP to fix build on mipsel/mips64el/alpha
......................................................................
Compare with -ENOTSUP to fix build on mipsel/mips64el/alpha
Change-Id: I591d37377495829d2a2bbb350e2c78fe4bddc745
---
M tests/sgsn/sgsn_test.c
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-sgsn refs/changes/16/14816/1
diff --git a/tests/sgsn/sgsn_test.c b/tests/sgsn/sgsn_test.c
index 23cb4fb..ff6ce2f 100644
--- a/tests/sgsn/sgsn_test.c
+++ b/tests/sgsn/sgsn_test.c
@@ -647,7 +647,7 @@
/* 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);
--
To view, visit https://gerrit.osmocom.org/c/osmo-sgsn/+/14816
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-sgsn
Gerrit-Branch: master
Gerrit-Change-Id: I591d37377495829d2a2bbb350e2c78fe4bddc745
Gerrit-Change-Number: 14816
Gerrit-PatchSet: 1
Gerrit-Owner: Hoernchen <[email protected]>
Gerrit-Reviewer: Ruben Undheim <[email protected]>
Gerrit-MessageType: newchange