Fix another spot where a hard-coded '|' hadn't been converted to ','

(closes issue #12034)
Reported by: kowalma


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@103844 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Michelson
2008-02-20 15:21:51 +00:00
parent b0be65f2ef
commit aaff057e5c

View File

@@ -512,7 +512,7 @@ static int start_monitor_exec(struct ast_channel *chan, void *data)
be pedantic. Reconstructing with checks for 'm' option does not be pedantic. Reconstructing with checks for 'm' option does not
work if we end up adding more options than 'm' in the future. */ work if we end up adding more options than 'm' in the future. */
delay = ast_strdupa(data); delay = ast_strdupa(data);
options = strrchr(delay, '|'); options = strrchr(delay, ',');
if (options) { if (options) {
arg = strchr(options, 'b'); arg = strchr(options, 'b');
if (arg) { if (arg) {