remove LOCAL_USER_ACF_ADD since it is now the same as LOCAL_USER_ADD

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9800 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2006-02-13 20:12:50 +00:00
parent 973c12effd
commit 2f2530b8e6
8 changed files with 10 additions and 25 deletions

View File

@@ -233,7 +233,7 @@ static int acf_sort_exec(struct ast_channel *chan, char *cmd, char *data, char *
struct localuser *u;
int ret = -1;
LOCAL_USER_ACF_ADD(u);
LOCAL_USER_ADD(u);
switch (sort_internal(chan, data, buf, len)) {
case ERROR_NOARG:
@@ -258,7 +258,7 @@ static int acf_cut_exec(struct ast_channel *chan, char *cmd, char *data, char *b
int ret = -1;
struct localuser *u;
LOCAL_USER_ACF_ADD(u);
LOCAL_USER_ADD(u);
switch (cut_internal(chan, data, buf, len)) {
case ERROR_NOARG:

View File

@@ -99,7 +99,7 @@ static int function_enum(struct ast_channel *chan, char *cmd, char *data,
}
*p = '\0';
LOCAL_USER_ACF_ADD(u);
LOCAL_USER_ADD(u);
res = ast_get_enum(chan, p, dest, sizeof(dest), tech, sizeof(tech), args.zone,
args.options);
@@ -141,7 +141,7 @@ static int function_txtcidname(struct ast_channel *chan, char *cmd,
buf[0] = '\0';
LOCAL_USER_ACF_ADD(u);
LOCAL_USER_ADD(u);
if (ast_strlen_zero(data)) {
ast_log(LOG_WARNING, "TXTCIDNAME requires an argument (number)\n");

View File

@@ -53,7 +53,7 @@ static int acf_rand_exec(struct ast_channel *chan, char *cmd,
AST_APP_ARG(max);
);
LOCAL_USER_ACF_ADD(u);
LOCAL_USER_ADD(u);
AST_STANDARD_APP_ARGS(args, parse);