Merged revisions 50346 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r50346 | qwell | 2007-01-10 10:45:36 -0600 (Wed, 10 Jan 2007) | 4 lines

Reverse some logic in cdr_manager, which made it fail to load if the config file existed.

Issue 8777

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@50347 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Jason Parker 2007-01-10 16:47:23 +00:00
parent a378353ecc
commit fe4208e4ee
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ static int load_module(void)
int res;
/* Configuration file */
if(loadconfigurationfile())
if (!loadconfigurationfile())
return AST_MODULE_LOAD_DECLINE;
res = ast_cdr_register(name, "Asterisk Manager Interface CDR Backend", manager_log);