[asterisk-commits] file: trunk r75260 - in /trunk: include/asterisk/pbx.h main/pbx.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Jul 16 13:38:28 CDT 2007
Author: file
Date: Mon Jul 16 13:38:28 2007
New Revision: 75260
URL: http://svn.digium.com/view/asterisk?view=rev&rev=75260
Log:
Change the function name slightly... just for kpfleming!
Modified:
trunk/include/asterisk/pbx.h
trunk/main/pbx.c
Modified: trunk/include/asterisk/pbx.h
URL: http://svn.digium.com/view/asterisk/trunk/include/asterisk/pbx.h?view=diff&rev=75260&r1=75259&r2=75260
==============================================================================
--- trunk/include/asterisk/pbx.h (original)
+++ trunk/include/asterisk/pbx.h Mon Jul 16 13:38:28 2007
@@ -865,12 +865,12 @@
/*!
* \brief Register a custom function
*/
-#define ast_custom_function_register(acf) ast_custom_function_register2(acf, ast_module_info->self)
+#define ast_custom_function_register(acf) __ast_custom_function_register(acf, ast_module_info->self)
/*!
* \brief Register a custom function
*/
-int ast_custom_function_register2(struct ast_custom_function *acf, struct ast_module *mod);
+int __ast_custom_function_register(struct ast_custom_function *acf, struct ast_module *mod);
/*!
* \brief Retrieve the number of active calls
Modified: trunk/main/pbx.c
URL: http://svn.digium.com/view/asterisk/trunk/main/pbx.c?view=diff&rev=75260&r1=75259&r2=75260
==============================================================================
--- trunk/main/pbx.c (original)
+++ trunk/main/pbx.c Mon Jul 16 13:38:28 2007
@@ -1410,7 +1410,7 @@
return acf ? 0 : -1;
}
-int ast_custom_function_register2(struct ast_custom_function *acf, struct ast_module *mod)
+int __ast_custom_function_register(struct ast_custom_function *acf, struct ast_module *mod)
{
struct ast_custom_function *cur;
More information about the asterisk-commits
mailing list