[svn-commits] tilghman: trunk r123865 - /trunk/apps/app_externalivr.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Jun 19 10:52:18 CDT 2008


Author: tilghman
Date: Thu Jun 19 10:52:17 2008
New Revision: 123865

URL: http://svn.digium.com/view/asterisk?view=rev&rev=123865
Log:
Missing comma
(closes issue #12891)
 Reported by: chris-mac

Modified:
    trunk/apps/app_externalivr.c

Modified: trunk/apps/app_externalivr.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_externalivr.c?view=diff&rev=123865&r1=123864&r2=123865
==============================================================================
--- trunk/apps/app_externalivr.c (original)
+++ trunk/apps/app_externalivr.c Thu Jun 19 10:52:17 2008
@@ -118,7 +118,7 @@
 
 	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);




More information about the svn-commits mailing list