From: BJ Weschke Date: Thu, 4 May 2006 11:17:13 +0000 (+0000) Subject: Make sure that only the "|" is a recognized delimiter for Verbose(), as the app... X-Git-Tag: 1.2.8~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=092055c3a52bd3520c98b1c16bc490dba8a38f6f;p=thirdparty%2Fasterisk.git Make sure that only the "|" is a recognized delimiter for Verbose(), as the app documentation already specifies. #7080 (alessiof reporting) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@24669 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_verbose.c b/apps/app_verbose.c index 6ed1e4820a..61c60abeda 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;