Skip to content
Snippets Groups Projects
Commit aaff057e authored by Mark Michelson's avatar Mark Michelson
Browse files

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
parent b0be65f2
Branches
Tags
No related merge requests found
......@@ -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
work if we end up adding more options than 'm' in the future. */
delay = ast_strdupa(data);
options = strrchr(delay, '|');
options = strrchr(delay, ',');
if (options) {
arg = strchr(options, 'b');
if (arg) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment