summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2009-04-14 05:27:53 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2009-04-14 05:27:53 +0000
commitc5719a495c2e8f40605aab030bf14b399a0cca67 (patch)
tree6f410fad372ef1e1ba6a151cdb0487318abc6b1e /utils
parent2d1e91b97cc0885b65c40cd6ddd4c9060cf0724c (diff)
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/trunk@188206 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'utils')
-rw-r--r--utils/smsq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/smsq.c b/utils/smsq.c
index fa71d7639..c6aaff8e2 100644
--- a/utils/smsq.c
+++ b/utils/smsq.c
@@ -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);