mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-20 00:30:20 +00:00
make the 'name' and 'value' fields in ast_variable const char *
This prevents modifying the strings in the stored variables, and catched a few instances where this was actually done. Given the differences between trunk and 1.4 (and the fact that this is effectively an API change) it is better to fix 1.4 independently. These are chan_sip.c::sip_register() chan_skinny.c:: near line 2847 config.c:: near line 1774 logger.c::make_components() res_adsi.c:: near line 1049 I may have missed some instances for modules that do not build here. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89268 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -88,7 +88,7 @@ char *dundi_eid_to_str_short(char *s, int maxlen, dundi_eid *eid)
|
||||
return os;
|
||||
}
|
||||
|
||||
int dundi_str_to_eid(dundi_eid *eid, char *s)
|
||||
int dundi_str_to_eid(dundi_eid *eid, const char *s)
|
||||
{
|
||||
unsigned int eid_int[6];
|
||||
int x;
|
||||
@@ -100,7 +100,7 @@ int dundi_str_to_eid(dundi_eid *eid, char *s)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int dundi_str_short_to_eid(dundi_eid *eid, char *s)
|
||||
int dundi_str_short_to_eid(dundi_eid *eid, const char *s)
|
||||
{
|
||||
unsigned int eid_int[6];
|
||||
int x;
|
||||
|
||||
Reference in New Issue
Block a user