Merge "cdr/cdr_csv.c: Add missing space after comma."

This commit is contained in:
Mark Michelson 2015-04-29 16:11:27 -05:00 committed by Gerrit Code Review
commit 8d547e4e88
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ static int build_csv_record(char *buf, size_t bufsize, struct ast_cdr *cdr)
append_string(buf, cdr->uniqueid, bufsize);
/* append the user field */
if(loguserfield)
append_string(buf, cdr->userfield,bufsize);
append_string(buf, cdr->userfield, bufsize);
/* If we hit the end of our buffer, log an error */
if (strlen(buf) < bufsize - 5) {
/* Trim off trailing comma */