Skip to content
Snippets Groups Projects
Commit 019c07e6 authored by Russell Bryant's avatar Russell Bryant
Browse files

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
parent 9d43f99b
No related branches found
No related tags found
No related merge requests found
...@@ -237,8 +237,8 @@ void ast_module_unref(struct ast_module *); ...@@ -237,8 +237,8 @@ void ast_module_unref(struct ast_module *);
static struct ast_module_info __mod_info = { \ static struct ast_module_info __mod_info = { \
NULL, \ NULL, \
load_func, \ load_func, \
unload_func, \
reload_func, \ reload_func, \
unload_func, \
AST_MODULE, \ AST_MODULE, \
desc, \ desc, \
keystr, \ keystr, \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment