From ea0d4674a604b98a32c5f5b42f1878d3d75af9e0 Mon Sep 17 00:00:00 2001 From: rizzo Date: Wed, 14 Nov 2007 13:18:40 +0000 Subject: 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: http://svn.digium.com/svn/asterisk/trunk@89268 f38db490-d61c-443f-a65b-d21fe96a405b --- channels/chan_agent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'channels/chan_agent.c') diff --git a/channels/chan_agent.c b/channels/chan_agent.c index 342f46754..99462e78d 100644 --- a/channels/chan_agent.c +++ b/channels/chan_agent.c @@ -267,7 +267,7 @@ static const struct ast_channel_tech agent_tech = { * @return The just created agent. * \sa agent_pvt, agents. */ -static struct agent_pvt *add_agent(char *agent, int pending) +static struct agent_pvt *add_agent(const char *agent, int pending) { char *parse; AST_DECLARE_APP_ARGS(args, -- cgit v1.2.3