dect
/
asterisk
Archived
13
0
Fork 0

make GROUP set group@categroy instead of category@group

ensure that GROUP_COUNT still returns "0", even if no group was found


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6245 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2005-07-28 21:16:02 +00:00
parent 5912042b64
commit 58b2bb1ecc
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ static char *group_count_function_read(struct ast_channel *chan, char *cmd, char
if ((grp = pbx_builtin_getvar_helper(chan, category)))
ast_copy_string(group, grp, sizeof(group));
else
return buf;
ast_log(LOG_NOTICE, "No group could be found for channel '%s'\n", chan->name);
}
count = ast_app_group_get_count(group, category);
@ -109,7 +109,7 @@ static void group_function_write(struct ast_channel *chan, char *cmd, char *data
char grpcat[256];
if (data && !ast_strlen_zero(data)) {
snprintf(grpcat, sizeof(grpcat), "%s@%s", data, value);
snprintf(grpcat, sizeof(grpcat), "%s@%s", value, data);
} else {
ast_copy_string(grpcat, value, sizeof(grpcat));
}