fix build: apply msgb_wrap_with_TL() rename

After libosmocore commit
If1e851ac605c8d2fde3da565b0bd674ea6350c2e
b27e6feb699712345373e87a48187dc622e4fa92
the osmo-msc master build is broken.

Apply the msgb_wrap_with_TL() rename to msgb_push_tl() to unbreak the build.

Change-Id: I1d4675e0c907b2f92f2ec79b02356391a6d72aa8
This commit is contained in:
Neels Hofmeyr 2019-01-22 01:51:21 +01:00
parent 811f6806a4
commit a92025e8fd
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ int msc_send_ussd_reject(struct ran_conn *conn,
return -1;
/* Wrap the component in a Facility message */
msgb_wrap_with_TL(msg, GSM0480_IE_FACILITY);
msgb_push_tl(msg, GSM0480_IE_FACILITY);
/* And finally pre-pend the L3 header */
gh = (struct gsm48_hdr *) msgb_push(msg, sizeof(*gh));