mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-13 16:21:01 +00:00
cdr/cdr_csv.c: Add missing space after comma.
Change-Id: I3866a20019b1a3a2f10fe36640053929330b0fcb
This commit is contained in:
@@ -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_string(buf, cdr->uniqueid, bufsize);
|
||||||
/* append the user field */
|
/* append the user field */
|
||||||
if(loguserfield)
|
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 we hit the end of our buffer, log an error */
|
||||||
if (strlen(buf) < bufsize - 5) {
|
if (strlen(buf) < bufsize - 5) {
|
||||||
/* Trim off trailing comma */
|
/* Trim off trailing comma */
|
||||||
|
Reference in New Issue
Block a user