[svn-commits] tilghman: branch 1.6.1 r188208 - in /branches/1.6.1: ./ utils/smsq.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Apr 14 00:29:15 CDT 2009


Author: tilghman
Date: Tue Apr 14 00:29:11 2009
New Revision: 188208

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=188208
Log:
Merged revisions 188206 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r188206 | tilghman | 2009-04-14 00:27:53 -0500 (Tue, 14 Apr 2009) | 6 lines
  
  Application delimiter is ',', not '|'.
  (closes issue #14881)
   Reported by: stegro
   Patches: 
         smsq.patch uploaded by stegro (license 752)
........

Modified:
    branches/1.6.1/   (props changed)
    branches/1.6.1/utils/smsq.c

Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.1/utils/smsq.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.1/utils/smsq.c?view=diff&rev=188208&r1=188207&r2=188208
==============================================================================
--- branches/1.6.1/utils/smsq.c (original)
+++ branches/1.6.1/utils/smsq.c Tue Apr 14 00:29:11 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 svn-commits mailing list