aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-14 05:29:46 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-14 05:29:46 +0000
commit4a97654879c5f2c34b702758f850f2bfa069a993 (patch)
tree7dc3333e94f2a947ab53fdf582452e6c6211d64c /utils
parentcf0824d649034a7b95357acc320f2b5e231dccfa (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.2@188209 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);