aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-20 15:21:51 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-20 15:21:51 +0000
commitb190a7fdbad7ae3123eacf2adce587eb94c51f9b (patch)
treeb3d3231ca001af8182f779f8ad9375532c39dfd6 /res
parent7c2424fc7342dfb614a14d4ce9540b241b9469a6 (diff)
Fix another spot where a hard-coded '|' hadn't been converted to ','
(closes issue #12034) Reported by: kowalma git-svn-id: http://svn.digium.com/svn/asterisk/trunk@103844 f38db490-d61c-443f-a65b-d21fe96a405b
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) {