Constify the result of a config retrieval function, to avoid mutilation (issue 7983).

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43364 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher
2006-09-20 20:40:39 +00:00
parent cc99b22469
commit 70af28270d
21 changed files with 141 additions and 126 deletions

View File

@@ -286,7 +286,7 @@ static void init_logger_chain(void)
struct logchannel *chan;
struct ast_config *cfg;
struct ast_variable *var;
char *s;
const char *s;
/* delete our list of log channels */
AST_LIST_LOCK(&logchannels);