[asterisk-commits] mmichelson: trunk r103844 - /trunk/res/res_monitor.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Feb 20 09:21:52 CST 2008
Author: mmichelson
Date: Wed Feb 20 09:21:51 2008
New Revision: 103844
URL: http://svn.digium.com/view/asterisk?view=rev&rev=103844
Log:
Fix another spot where a hard-coded '|' hadn't been converted to ','
Modified:
trunk/res/res_monitor.c
Modified: trunk/res/res_monitor.c
URL: http://svn.digium.com/view/asterisk/trunk/res/res_monitor.c?view=diff&rev=103844&r1=103843&r2=103844
==============================================================================
--- trunk/res/res_monitor.c (original)
+++ trunk/res/res_monitor.c Wed Feb 20 09:21:51 2008
@@ -512,7 +512,7 @@
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) {
More information about the asterisk-commits
mailing list