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
1.6.0
Mark Michelson 18 years ago
parent b0be65f2ef
commit aaff057e5c

@ -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) {

Loading…
Cancel
Save