mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-20 19:53:10 +00:00
Missing comma
(closes issue #12891) Reported by: chris-mac git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@123865 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -118,7 +118,7 @@ static void send_eivr_event(FILE *handle, const char event, const char *data,
|
|||||||
|
|
||||||
ast_str_append(&tmp, 0, "%c,%10d", event, (int)time(NULL));
|
ast_str_append(&tmp, 0, "%c,%10d", event, (int)time(NULL));
|
||||||
if (data) {
|
if (data) {
|
||||||
ast_str_append(&tmp, 0, "%s", data);
|
ast_str_append(&tmp, 0, ",%s", data);
|
||||||
}
|
}
|
||||||
|
|
||||||
fprintf(handle, "%s\n", tmp->str);
|
fprintf(handle, "%s\n", tmp->str);
|
||||||
|
Reference in New Issue
Block a user