aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_verbose.c
diff options
context:
space:
mode:
authorbweschke <bweschke@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-04 11:24:47 +0000
committerbweschke <bweschke@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-04 11:24:47 +0000
commit236afecfadd4c1a597d1436a3bb5483e860c01b7 (patch)
tree3e407c3b65bc988c6f4746c26f4ddd2ebcf719cc /apps/app_verbose.c
parente7c9e22c7ab3b9562e514ad8774075ee6488b9f1 (diff)
Merged revisions 24669 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r24669 | bweschke | 2006-05-04 06:17:13 -0500 (Thu, 04 May 2006) | 3 lines Make sure that only the "|" is a recognized delimiter for Verbose(), as the app documentation already specifies. #7080 (alessiof reporting) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@24670 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_verbose.c')
-rw-r--r--apps/app_verbose.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_verbose.c b/apps/app_verbose.c
index eb698f0b8..02d49af62 100644
--- a/apps/app_verbose.c
+++ b/apps/app_verbose.c
@@ -66,7 +66,7 @@ static int verbose_exec(struct ast_channel *chan, void *data)
if (data) {
if ((vtext = ast_strdupa(data))) {
- char *tmp = strsep(&vtext, "|,");
+ char *tmp = strsep(&vtext, "|");
if (vtext) {
if (sscanf(tmp, "%d", &vsize) != 1) {
vsize = 0;