[asterisk-commits] file: branch 1.4 r65250 - /branches/1.4/res/res_agi.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Sun May 20 10:59:58 MST 2007


Author: file
Date: Sun May 20 12:59:58 2007
New Revision: 65250

URL: http://svn.digium.com/view/asterisk?view=rev&rev=65250
Log:
res_agi needs to export two symbols (ast_agi_register and ast_agi_unregister) for usage by others. (issue #9755 reported by mnicholson)

Modified:
    branches/1.4/res/res_agi.c

Modified: branches/1.4/res/res_agi.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/res/res_agi.c?view=diff&rev=65250&r1=65249&r2=65250
==============================================================================
--- branches/1.4/res/res_agi.c (original)
+++ branches/1.4/res/res_agi.c Sun May 20 12:59:58 2007
@@ -2156,4 +2156,7 @@
 	return ast_register_application(app, agi_exec, synopsis, descrip);
 }
 
-AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Asterisk Gateway Interface (AGI)");
+AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS, "Asterisk Gateway Interface (AGI)",
+                .load = load_module,
+                .unload = unload_module,
+		);



More information about the asterisk-commits mailing list