summaryrefslogtreecommitdiff
path: root/include/asterisk/module.h
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2007-09-30 20:06:58 +0000
committerRussell Bryant <russell@russellbryant.com>2007-09-30 20:06:58 +0000
commit019c07e63effadf5002813f5a18d95f9fd159e58 (patch)
treeefb6bb834c262ede1e2133310b4c64213201e4b9 /include/asterisk/module.h
parent9d43f99be12ad40d3bfca75854bf3e09b59b675e (diff)
Merged revisions 84146 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r84146 | russell | 2007-09-30 16:02:16 -0400 (Sun, 30 Sep 2007) | 4 lines 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: https://origsvn.digium.com/svn/asterisk/trunk@84147 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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 d53e6086c..4c6cc507b 100644
--- a/include/asterisk/module.h
+++ b/include/asterisk/module.h
@@ -237,8 +237,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, \