diff options
author | Vadim Yanitskiy <axilirator@gmail.com> | 2018-08-03 03:52:16 +0700 |
---|---|---|
committer | Vadim Yanitskiy <axilirator@gmail.com> | 2018-08-05 14:48:27 +0700 |
commit | 39a36d01932867f780474f4b17bf42224cd57edb (patch) | |
tree | 9602bbe58f33c4c23966a04003fe916983996170 /src/gsm | |
parent | 3fc4616224db31d4c4b14d919dd5c719d4ab19f1 (diff) |
gsm/gsm0480.c: use the local msgb allocator
Change-Id: I23b4b0e1c237b9b27c1db1c9a824b5329d41a38b
Diffstat (limited to 'src/gsm')
-rw-r--r-- | src/gsm/gsm0480.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gsm/gsm0480.c b/src/gsm/gsm0480.c index 5b51c754..df640b8e 100644 --- a/src/gsm/gsm0480.c +++ b/src/gsm/gsm0480.c @@ -131,7 +131,7 @@ struct msgb *gsm0480_create_unstructuredSS_Notify(int alertPattern, const char * uint8_t *seq_len_ptr, *ussd_len_ptr, *data; int len; - msg = msgb_alloc_headroom(1024, 128, "GSM 04.80"); + msg = gsm0480_msgb_alloc_name("TS 04.80 USSD Notify"); if (!msg) return NULL; @@ -177,7 +177,7 @@ struct msgb *gsm0480_create_notifySS(const char *text) if (len < 1 || len > 160) return NULL; - msg = msgb_alloc_headroom(1024, 128, "GSM 04.80"); + msg = gsm0480_msgb_alloc_name("TS 04.80 NotifySS"); if (!msg) return NULL; @@ -962,7 +962,7 @@ struct msgb *gsm0480_create_ussd_release_complete(void) { struct msgb *msg; - msg = msgb_alloc_headroom(1024, 128, "GSM 04.80 USSD REL COMPL"); + msg = gsm0480_msgb_alloc_name("TS 04.80 USSD REL COMPL"); if (!msg) return NULL; |