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:
Tilghman Lesher 2008-06-19 15:52:17 +00:00
parent a41649d66b
commit d2247c2573
1 changed files with 1 additions and 1 deletions

View File

@ -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));
if (data) {
ast_str_append(&tmp, 0, "%s", data);
ast_str_append(&tmp, 0, ",%s", data);
}
fprintf(handle, "%s\n", tmp->str);