aboutsummaryrefslogtreecommitdiffstats
path: root/cdr/cdr_manager.c
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-01-10 16:47:23 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-01-10 16:47:23 +0000
commite1d6c6b9a1360789a180896612b7d25f5c99b884 (patch)
tree71d7e7a73adefa72236c801f919ad6bed5e424df /cdr/cdr_manager.c
parente697c0393ab13411e2f0a9ecd4618a8d502402c2 (diff)
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: http://svn.digium.com/svn/asterisk/trunk@50347 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'cdr/cdr_manager.c')
-rw-r--r--cdr/cdr_manager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cdr/cdr_manager.c b/cdr/cdr_manager.c
index 4e43a30ff..bd6ef6709 100644
--- a/cdr/cdr_manager.c
+++ b/cdr/cdr_manager.c
@@ -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);