aboutsummaryrefslogtreecommitdiffstats
path: root/funcs/func_enum.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-13 20:12:50 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-13 20:12:50 +0000
commit4c6776c6d75216f03490b12f40f9801a5b6ccc7f (patch)
treea3eb89f49e8ebf6891b56fff7ac014a27667e286 /funcs/func_enum.c
parent5fe6afb1830f0f828607a49418968442caccf1c9 (diff)
remove LOCAL_USER_ACF_ADD since it is now the same as LOCAL_USER_ADD
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@9800 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs/func_enum.c')
-rw-r--r--funcs/func_enum.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/funcs/func_enum.c b/funcs/func_enum.c
index 17c48ff8f..1da13a4d4 100644
--- a/funcs/func_enum.c
+++ b/funcs/func_enum.c
@@ -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");