From 53024e3508667017a3898d374a1bc8b7e2d143e5 Mon Sep 17 00:00:00 2001 From: Paul Cadach Date: Tue, 10 Oct 2006 16:44:54 +0000 Subject: [PATCH] CHANNEL() function sometime mix parameter and value git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@44809 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- funcs/func_channel.c | 6 +++--- include/asterisk/channel.h | 2 +- main/channel.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/funcs/func_channel.c b/funcs/func_channel.c index 2a377b52f9..9c02a59fa9 100644 --- a/funcs/func_channel.c +++ b/funcs/func_channel.c @@ -112,13 +112,13 @@ static int func_channel_write(struct ast_channel *chan, char *function, locked_string_field_set(chan, musicclass, value); else if (!strcasecmp(data, "tonezone")) { struct tone_zone *new_zone; - if (!(new_zone = ast_get_indication_zone(data))) { - ast_log(LOG_ERROR, "Unknown country code for tonezone. Check indications.conf for available country codes.\n"); + if (!(new_zone = ast_get_indication_zone(value))) { + ast_log(LOG_ERROR, "Unknown country code '%s' for tonezone. Check indications.conf for available country codes.\n", value); ret = -1; } else chan->zone = new_zone; } else if (!strcasecmp(data, "callgroup")) - chan->callgroup = ast_get_group(data); + chan->callgroup = ast_get_group(value); else if (!strcasecmp(data, "txgain")) { sscanf(value, "%hhd", &gainset); ast_channel_setoption(chan, AST_OPTION_TXGAIN, &gainset, sizeof(gainset), 0); diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h index 38b09bf74d..0d06ef6130 100644 --- a/include/asterisk/channel.h +++ b/include/asterisk/channel.h @@ -1303,7 +1303,7 @@ static inline int ast_select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *efds, ast_set_flag(c, AST_FLAG_BLOCKING); \ } } -ast_group_t ast_get_group(char *s); +ast_group_t ast_get_group(const char *s); /*! \brief print call- and pickup groups into buffer */ char *ast_print_group(char *buf, int buflen, ast_group_t group); diff --git a/main/channel.c b/main/channel.c index fbfdd199de..fa7a978fb9 100644 --- a/main/channel.c +++ b/main/channel.c @@ -4115,7 +4115,7 @@ int ast_tonepair(struct ast_channel *chan, int freq1, int freq2, int duration, i return 0; } -ast_group_t ast_get_group(char *s) +ast_group_t ast_get_group(const char *s) { char *piece; char *c;