summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2008-02-20 15:21:51 +0000
committerMark Michelson <mmichelson@digium.com>2008-02-20 15:21:51 +0000
commitaaff057e5ce4a2f9237b8e9f0bea29f408bfc3a9 (patch)
treeb3d3231ca001af8182f779f8ad9375532c39dfd6 /res
parentb0be65f2ef18945b6418a21e37b1eaf7f3839384 (diff)
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
Diffstat (limited to 'res')
-rw-r--r--res/res_monitor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_monitor.c b/res/res_monitor.c
index 6a90001b2..f3be16f7a 100644
--- a/res/res_monitor.c
+++ b/res/res_monitor.c
@@ -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) {