Change in ...osmocom-bb[master]: gsm480_tx_release_compl(): Fix ordering of location/cause in CAUSE_IE

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

laforge gerrit-no-reply at lists.osmocom.org
Sun Jul 21 10:48:30 UTC 2019


laforge has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmocom-bb/+/14879


Change subject: gsm480_tx_release_compl(): Fix ordering of location/cause in CAUSE_IE
......................................................................

gsm480_tx_release_compl(): Fix ordering of location/cause in CAUSE_IE

Change-Id: Ie01ffc3fe2752d82a7d2b3d213d6012ef1c9b4ec
---
M src/host/layer23/src/mobile/gsm480_ss.c
1 file changed, 2 insertions(+), 2 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/79/14879/1

diff --git a/src/host/layer23/src/mobile/gsm480_ss.c b/src/host/layer23/src/mobile/gsm480_ss.c
index b114aa6..3d9cef1 100644
--- a/src/host/layer23/src/mobile/gsm480_ss.c
+++ b/src/host/layer23/src/mobile/gsm480_ss.c
@@ -401,8 +401,8 @@
 		uint8_t *tlv = msgb_put(msg, 4);
 		tlv[0] = GSM48_IE_CAUSE;
 		tlv[1] = 2;
-		tlv[2] = 0x80 | cause;
-		tlv[3] = 0x80 | GSM48_CAUSE_LOC_USER;
+		tlv[2] = 0x80 | GSM48_CAUSE_LOC_USER;
+		tlv[3] = 0x80 | cause;
 	}
 	return gsm480_to_mm(msg, trans, GSM48_MMSS_DATA_REQ);
 }

-- 
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/14879
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: Ie01ffc3fe2752d82a7d2b3d213d6012ef1c9b4ec
Gerrit-Change-Number: 14879
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge at gnumonks.org>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20190721/ccc23a42/attachment.htm>


More information about the gerrit-log mailing list