From 462db35426cc66653d0a2987af82ed1e0959a5c5 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Wed, 16 Dec 2015 23:06:59 +0100 Subject: [PATCH] hnbap_common: Fix copy+paste mistake (use hnbap msgb allocator) --- src/hnbap_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hnbap_common.c b/src/hnbap_common.c index 29b0f3b3..0bb08fef 100644 --- a/src/hnbap_common.c +++ b/src/hnbap_common.c @@ -117,7 +117,7 @@ static struct msgb *hnbap_msgb_alloc(void) static struct msgb *_hnbap_gen_msg(HNBAP_PDU_t *pdu) { - struct msgb *msg = ranap_msgb_alloc(); + struct msgb *msg = hnbap_msgb_alloc(); asn_enc_rval_t rval; if (!msg)