From b190a7fdbad7ae3123eacf2adce587eb94c51f9b Mon Sep 17 00:00:00 2001 From: mmichelson Date: Wed, 20 Feb 2008 15:21:51 +0000 Subject: 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 --- res/res_monitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'res') 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) { -- cgit v1.2.3