aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorbweschke <bweschke@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-04 11:17:13 +0000
committerbweschke <bweschke@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-04 11:17:13 +0000
commitddfb7d87eca04cf7c62a1c3a1aefae8dcb31559f (patch)
treebd6e5df8f9984770e3d74251532816577594da1f /apps
parent5c15a35a4f1c7a5e373b024bb4dde7712a6b7e43 (diff)
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/branches/1.2@24669 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-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 6ed1e4820..61c60abed 100644
--- a/apps/app_verbose.c
+++ b/apps/app_verbose.c
@@ -63,7 +63,7 @@ static int verbose_exec(struct ast_channel *chan, void *data)
if (data) {
vtext = ast_strdupa((char *)data);
if (vtext) {
- char *tmp = strsep(&vtext, "|,");
+ char *tmp = strsep(&vtext, "|");
if (vtext) {
if (sscanf(tmp, "%d", &vsize) != 1) {
vsize = 0;