[svn-commits] file: trunk r65249 - in /trunk/res: res_crypto.c
res_musiconhold.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Sun May 20 10:55:41 MST 2007
Author: file
Date: Sun May 20 12:55:40 2007
New Revision: 65249
URL: http://svn.digium.com/view/asterisk?view=rev&rev=65249
Log:
Music on hold and crypto no longer need their symbols globally exported. They register the function pointers upon loading with their respective stubs.
Modified:
trunk/res/res_crypto.c
trunk/res/res_musiconhold.c
Modified: trunk/res/res_crypto.c
URL: http://svn.digium.com/view/asterisk/trunk/res/res_crypto.c?view=diff&rev=65249&r1=65248&r2=65249
==============================================================================
--- trunk/res/res_crypto.c (original)
+++ trunk/res/res_crypto.c Sun May 20 12:55:40 2007
@@ -616,7 +616,7 @@
}
/* needs usecount semantics defined */
-AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS, "Cryptographic Digital Signatures",
+AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "Cryptographic Digital Signatures",
.load = load_module,
.unload = unload_module,
.reload = reload
Modified: trunk/res/res_musiconhold.c
URL: http://svn.digium.com/view/asterisk/trunk/res/res_musiconhold.c?view=diff&rev=65249&r1=65248&r2=65249
==============================================================================
--- trunk/res/res_musiconhold.c (original)
+++ trunk/res/res_musiconhold.c Sun May 20 12:55:40 2007
@@ -1222,7 +1222,7 @@
return -1;
}
-AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS, "Music On Hold Resource",
+AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "Music On Hold Resource",
.load = load_module,
.unload = unload_module,
.reload = reload,
More information about the svn-commits
mailing list