summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--TODO-RELEASE1
-rw-r--r--include/osmocom/ctrl/control_cmd.h6
2 files changed, 3 insertions, 4 deletions
diff --git a/TODO-RELEASE b/TODO-RELEASE
index b67d6dd7..648b6a6d 100644
--- a/TODO-RELEASE
+++ b/TODO-RELEASE
@@ -4,4 +4,3 @@ libosmocore change major external talloc dependency / internal talloc removal
libosmocore change major size of ph_data_param struct changed / Extend L1SAP PH-DATA with presence information
libosmocore change major size of ph_data_param struct changed / Extend L1SAP PH-DATA with measurement information
libosmocore change major size of ph_tch_param struct changed / Extend with RTP Marker
-libosmocore change minor mark as const id, variable & value fields of ctrl_cmd struct
diff --git a/include/osmocom/ctrl/control_cmd.h b/include/osmocom/ctrl/control_cmd.h
index cd96038e..8f2eaa25 100644
--- a/include/osmocom/ctrl/control_cmd.h
+++ b/include/osmocom/ctrl/control_cmd.h
@@ -53,10 +53,10 @@ struct ctrl_connection {
struct ctrl_cmd {
struct ctrl_connection *ccon;
enum ctrl_type type;
- const char *id;
+ char *id;
void *node;
- const char *variable;
- const char *value;
+ char *variable;
+ char *value;
char *reply;
};