aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/module.h
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-09-30 20:02:16 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-09-30 20:02:16 +0000
commitda07735bd0e93a384b02a26ff02872617cd44b9f (patch)
treeb9927bb07b51c62701adecbd2c0d5bd5bcf4584c /include/asterisk/module.h
parent02cfef921b26c4f2a57821724221592956a89757 (diff)
Fix the AST_MODULE_INFO macro for C++ modules. The load and reload parameters
were in the wrong place. (closes issue #10846, alebm) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@84146 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/module.h')
-rw-r--r--include/asterisk/module.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/module.h b/include/asterisk/module.h
index b1585b60f..7f14df7f9 100644
--- a/include/asterisk/module.h
+++ b/include/asterisk/module.h
@@ -224,8 +224,8 @@ void ast_module_unref(struct ast_module *);
static struct ast_module_info __mod_info = { \
NULL, \
load_func, \
- unload_func, \
reload_func, \
+ unload_func, \
AST_MODULE, \
desc, \
keystr, \