Vadim Yanitskiy has uploaded this change for review. (
https://gerrit.osmocom.org/12685
Change subject: mobile/gsm480_ss.c: fix build: apply msgb_wrap_with_TL() rename
......................................................................
mobile/gsm480_ss.c: fix build: apply msgb_wrap_with_TL() rename
In If1e851ac605c8d2fde3da565b0bd674ea6350c2e, msgb_wrap_with_TL()
was renamed to msgb_push_tl(). Let's use the new symbol name.
Change-Id: Ief37424e0ca3cd696054518a0ffb07b7ef17a462
---
M src/host/layer23/src/mobile/gsm480_ss.c
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/85/12685/1
diff --git a/src/host/layer23/src/mobile/gsm480_ss.c
b/src/host/layer23/src/mobile/gsm480_ss.c
index 116c72f..5ff3ce6 100644
--- a/src/host/layer23/src/mobile/gsm480_ss.c
+++ b/src/host/layer23/src/mobile/gsm480_ss.c
@@ -438,7 +438,7 @@
if (msg_type == GSM0480_MTYPE_FACILITY)
msgb_wrap_with_L(msg);
else
- msgb_wrap_with_TL(msg, GSM0480_IE_FACILITY);
+ msgb_push_tl(msg, GSM0480_IE_FACILITY);
/* FIXME: If phase 2, we need SSVERSION to be added */
--
To view, visit https://gerrit.osmocom.org/12685
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ief37424e0ca3cd696054518a0ffb07b7ef17a462
Gerrit-Change-Number: 12685
Gerrit-PatchSet: 1
Gerrit-Owner: Vadim Yanitskiy <[email protected]>