libmsc: struct smsc: drop 'const' qualifier from bind_addr

This pointer holds an address of a string allocated on heap.

Change-Id: I50145b57494aaccd4793f7b0ed2f65a6641db929
Related: CID#240711
This commit is contained in:
Vadim Yanitskiy 2021-10-26 00:39:11 +03:00 committed by fixeria
parent 583883bf2e
commit 97b8e76b50
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ struct smsc {
struct llist_head esme_list;
struct llist_head acl_list;
struct llist_head route_list;
const char *bind_addr;
char *bind_addr;
uint16_t listen_port;
char system_id[SMPP_SYS_ID_LEN+1];
int accept_all;