aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_agi.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-20 04:45:45 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-20 04:45:45 +0000
commit7b3a5c9a1aa3e56b5c8a210246e401d488eb01f8 (patch)
treea0dc0b35389a0c6450e645789d023a4d05641008 /res/res_agi.c
parente0ebc65f742994df12c4e60e85868bd9a66175e0 (diff)
move more API into the ast_ namespace
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43310 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/res_agi.c')
-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++) {