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
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);