mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-29 18:19:30 +00:00
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:
@@ -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) {
|
||||
|
Reference in New Issue
Block a user