mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
constify arguments in more places where strings should not be modified (issue #6286)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8203 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2226,7 +2226,7 @@ static char *model2str(int model)
|
||||
}
|
||||
}
|
||||
|
||||
static char *complete_peer_helper(char *line, char *word, int pos, int state, int rpos)
|
||||
static char *complete_peer_helper(const char *line, const char *word, int pos, int state, int rpos)
|
||||
{
|
||||
int which=0;
|
||||
char *ret;
|
||||
@@ -2251,7 +2251,7 @@ static char *complete_peer_helper(char *line, char *word, int pos, int state, in
|
||||
return ret;
|
||||
}
|
||||
|
||||
static char *complete_peer_4(char *line, char *word, int pos, int state)
|
||||
static char *complete_peer_4(const char *line, const char *word, int pos, int state)
|
||||
{
|
||||
return complete_peer_helper(line, word, pos, state, 3);
|
||||
}
|
||||
|
Reference in New Issue
Block a user