aboutsummaryrefslogtreecommitdiffstats
path: root/cdr
diff options
context:
space:
mode:
Diffstat (limited to 'cdr')
-rwxr-xr-xcdr/cdr_csv.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cdr/cdr_csv.c b/cdr/cdr_csv.c
index c669652be..17a0f4dab 100755
--- a/cdr/cdr_csv.c
+++ b/cdr/cdr_csv.c
@@ -19,6 +19,7 @@
#include <asterisk/cdr.h>
#include <asterisk/module.h>
#include <asterisk/logger.h>
+#include <asterisk/utils.h>
#include "../asterisk.h"
#include "../astconf.h"
@@ -224,7 +225,7 @@ static int csv_log(struct ast_cdr *cdr)
fclose(mf);
mf = NULL;
}
- if (strlen(cdr->accountcode)) {
+ if (!ast_strlen_zero(cdr->accountcode)) {
if (writefile(buf, cdr->accountcode))
ast_log(LOG_WARNING, "Unable to write CSV record to account file '%s'\n", cdr->accountcode);
}