summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2007-12-18 10:24:58 +0000
committerLuigi Rizzo <rizzo@icir.org>2007-12-18 10:24:58 +0000
commit10f70a8321d064d77106d056a361876d4d36628d (patch)
tree48fcbf7932507d398d956c38dbcff47370d07b05 /channels
parentfd88390af7bcd02958b434d0b6fdb494e721c06c (diff)
make configuration variable const so they are not accidentally
modified. This requires casting the strings in asterisk.c when writing to them, so we do it through a macro to do it consistently. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@93603 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 467dcd76d..d6fa8f93d 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -2907,7 +2907,7 @@ static void realtime_update_peer(const char *peername, struct sockaddr_in *sin,
char regseconds[20];
char *tablename = NULL;
- char *sysname = ast_config_AST_SYSTEM_NAME;
+ const char *sysname = ast_config_AST_SYSTEM_NAME;
char *syslabel = NULL;
time_t nowtime = time(NULL) + expirey;