summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-12-13 20:23:48 +0000
committerJoshua Colp <jcolp@digium.com>2007-12-13 20:23:48 +0000
commite941bbad0fe6511dd92c4a1341a248eae681691b (patch)
treedbdbeb47bccda5577246f9ec7ca6061e41f27534 /res
parent7dbfcdecae4f1b97e61e3a94b0367925e22b7080 (diff)
Move usage of the old LOCAL_USER_* macros to the new ast_module_user_* functions in a few documentation places.
(closes issue #11533) Reported by: IgorG Patches: oldmacroclean.v1.diff uploaded by IgorG (license 20) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@92811 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res')
-rw-r--r--res/res_agi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index cf84bb9c3..77e56f5f2 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -2457,7 +2457,7 @@ static int agi_exec_full(struct ast_channel *chan, void *data, int enhanced, int
/* Answer if need be */
if (chan->_state != AST_STATE_UP) {
if (ast_answer(chan)) {
- LOCAL_USER_REMOVE(u);
+ ast_module_user_remove(u);
return -1;
}
}