summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2006-09-20 04:45:45 +0000
committerKevin P. Fleming <kpfleming@digium.com>2006-09-20 04:45:45 +0000
commitea399862c4d96cc7ff58fa5bbc317864bdde6c2a (patch)
treea0dc0b35389a0c6450e645789d023a4d05641008 /res
parent41d3e99e2843717440f9a65024ff949fc5aedebd (diff)
move more API into the ast_ namespace
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43310 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res')
-rw-r--r--res/res_agi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index 7794449aa..736cea394 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -1658,7 +1658,7 @@ static int help_workhorse(int fd, char *match[])
return 0;
}
-int agi_register(agi_command *agi)
+int ast_agi_register(agi_command *agi)
{
int x;
for (x=0; x<MAX_COMMANDS - 1; x++) {
@@ -1677,7 +1677,7 @@ int agi_register(agi_command *agi)
return -1;
}
-void agi_unregister(agi_command *agi)
+void ast_agi_unregister(agi_command *agi)
{
int x;
for (x=0; x<MAX_COMMANDS - 1; x++) {