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:
Luigi Rizzo
2007-11-14 13:18:40 +00:00
parent d3414c7552
commit 7f8ecd2cd3
23 changed files with 75 additions and 60 deletions

View File

@@ -4219,7 +4219,7 @@ static void prune_mappings(void)
AST_LIST_UNLOCK(&peers);
}
static void append_permission(struct permissionlist *permlist, char *s, int allow)
static void append_permission(struct permissionlist *permlist, const char *s, int allow)
{
struct permission *perm;
@@ -4234,7 +4234,7 @@ static void append_permission(struct permissionlist *permlist, char *s, int allo
#define MAX_OPTS 128
static void build_mapping(char *name, char *value)
static void build_mapping(const char *name, const char *value)
{
char *t, *fields[MAX_OPTS];
struct dundi_mapping *map;