aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-14 05:29:11 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-14 05:29:11 +0000
commit577c7f89f0f597080d9ca334ccce95daa7c5169b (patch)
tree6475e9253a96c72830f5934d102f7ea46198e082 /utils
parent90c803b30227db206df082d3724773e53ec4c80b (diff)
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) ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@188208 f38db490-d61c-443f-a65b-d21fe96a405b
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);