[asterisk-commits] tilghman: trunk r188206 - /trunk/utils/smsq.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Apr 14 00:28:02 CDT 2009
Author: tilghman
Date: Tue Apr 14 00:27:53 2009
New Revision: 188206
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=188206
Log:
Application delimiter is ',', not '|'.
(closes issue #14881)
Reported by: stegro
Patches:
smsq.patch uploaded by stegro (license 752)
Modified:
trunk/utils/smsq.c
Modified: trunk/utils/smsq.c
URL: http://svn.digium.com/svn-view/asterisk/trunk/utils/smsq.c?view=diff&rev=188206&r1=188205&r2=188206
==============================================================================
--- trunk/utils/smsq.c (original)
+++ trunk/utils/smsq.c Tue Apr 14 00:27:53 2009
@@ -165,7 +165,7 @@
fprintf (f, "Application: SMS\n");
fprintf (f, "Data: %.*s", qfl, queue);
if (dir[1] == 't')
- fprintf (f, "|s");
+ fprintf (f, ",s");
fprintf (f, "\nMaxRetries: %d\n", retries);
fprintf (f, "RetryTime: %d\n", delay);
fprintf (f, "WaitTime: %d\n", wait);
More information about the asterisk-commits
mailing list