laforge has uploaded this change for review.

View Change

constify {hnbap_rua}_cause_str() argument

ranap_cause_str() already had a const input argument, but the
HNBAP and RUA equivalents for some reason had a non-const input.

Change-Id: I7db92b51847c282d23d568970dfd2bedecdea486
---
M include/osmocom/hnbap/hnbap_common.h
M include/osmocom/rua/rua_common.h
M src/hnbap_common.c
M src/rua_common.c
4 files changed, 16 insertions(+), 4 deletions(-)

git pull ssh://gerrit.osmocom.org:29418/osmo-iuh refs/changes/73/36473/1
diff --git a/include/osmocom/hnbap/hnbap_common.h b/include/osmocom/hnbap/hnbap_common.h
index af619e2..75981d9 100644
--- a/include/osmocom/hnbap/hnbap_common.h
+++ b/include/osmocom/hnbap/hnbap_common.h
@@ -149,6 +149,6 @@
HNBAP_IE_t *hnbap_new_ie(HNBAP_ProtocolIE_ID_t id, HNBAP_Criticality_t criticality,
asn_TYPE_descriptor_t *type, void *sptr);

-char *hnbap_cause_str(HNBAP_Cause_t *cause);
+char *hnbap_cause_str(const HNBAP_Cause_t *cause);

void hnbap_set_log_area(int log_area);
diff --git a/include/osmocom/rua/rua_common.h b/include/osmocom/rua/rua_common.h
index 7967c91..a88c9a2 100644
--- a/include/osmocom/rua/rua_common.h
+++ b/include/osmocom/rua/rua_common.h
@@ -69,6 +69,6 @@
RUA_IE_t *rua_new_ie(RUA_ProtocolIE_ID_t id, RUA_Criticality_t criticality,
asn_TYPE_descriptor_t *type, void *sptr);

-char *rua_cause_str(RUA_Cause_t *cause);
+char *rua_cause_str(const RUA_Cause_t *cause);

void rua_set_log_area(int log_area);
diff --git a/src/hnbap_common.c b/src/hnbap_common.c
index 67cc30c..10a29fa 100644
--- a/src/hnbap_common.c
+++ b/src/hnbap_common.c
@@ -78,7 +78,7 @@
{ 0, NULL }
};

-char *hnbap_cause_str(HNBAP_Cause_t *cause)
+char *hnbap_cause_str(const HNBAP_Cause_t *cause)
{
static char buf[32];

diff --git a/src/rua_common.c b/src/rua_common.c
index 37cf3ba..0cb8426 100644
--- a/src/rua_common.c
+++ b/src/rua_common.c
@@ -67,7 +67,7 @@
{ 0, NULL }
};

-char *rua_cause_str(RUA_Cause_t *cause)
+char *rua_cause_str(const RUA_Cause_t *cause)
{
static char buf[32];


To view, visit change 36473. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: osmo-iuh
Gerrit-Branch: master
Gerrit-Change-Id: I7db92b51847c282d23d568970dfd2bedecdea486
Gerrit-Change-Number: 36473
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge@osmocom.org>
Gerrit-MessageType: newchange