]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 188206 via svnmerge from
authorTilghman Lesher <tilghman@meg.abyt.es>
Tue, 14 Apr 2009 05:29:11 +0000 (05:29 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Tue, 14 Apr 2009 05:29:11 +0000 (05:29 +0000)
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)
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@188208 65c4cc65-6c06-0410-ace0-fbb531ad65f3

utils/smsq.c

index fa71d76391792f3bcd8a5fe5ac55f88bd0e8cfc6..c6aaff8e21ca453c6a841ceeeafb03ef0408997f 100644 (file)
@@ -165,7 +165,7 @@ static char txqcheck (char *dir, char *queue, char subaddress, char *channel, ch
    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);