summaryrefslogtreecommitdiff
path: root/cdr
diff options
context:
space:
mode:
authorJames Golovich <james@gnuinter.net>2004-05-08 08:07:47 +0000
committerJames Golovich <james@gnuinter.net>2004-05-08 08:07:47 +0000
commit29718a5001327d7487481a621616ad77d25aba72 (patch)
treea623ef4c57358b84f6ee14266ae684153cd38f4c /cdr
parent0ce20fea8ae8722d521729accaa5ea612f4a8564 (diff)
ast_strlen_zero changes
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2921 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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);
}