From 7f8ecd2cd39ac2299ec08deb4dc92839be5412d1 Mon Sep 17 00:00:00 2001 From: Luigi 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: https://origsvn.digium.com/svn/asterisk/trunk@89268 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk/abstract_jb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/asterisk/abstract_jb.h') diff --git a/include/asterisk/abstract_jb.h b/include/asterisk/abstract_jb.h index 145256fcf..9342dca82 100644 --- a/include/asterisk/abstract_jb.h +++ b/include/asterisk/abstract_jb.h @@ -193,7 +193,7 @@ void ast_jb_destroy(struct ast_channel *chan); * * \return zero if the property was set to the configuration, -1 if not. */ -int ast_jb_read_conf(struct ast_jb_conf *conf, char *varname, char *value); +int ast_jb_read_conf(struct ast_jb_conf *conf, const char *varname, const char *value); /*! -- cgit v1.2.3