aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-14 05:28:33 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-14 05:28:33 +0000
commit7fac29f6c135e45ea4d1773933521415fdea593d (patch)
tree875151c5140aca2c0328b711748400c8b63448da /utils
parentd6ae36919101edc3f7a60ac2c22f95953cdbf8f6 (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.0@188207 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 a55a71225..3026f4924 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);