[Freeswitch-svn] [commit] r5204 - freeswitch/trunk/src
Freeswitch SVN
anthm at freeswitch.org
Sat May 19 20:38:26 EDT 2007
Author: anthm
Date: Sat May 19 20:38:25 2007
New Revision: 5204
Modified:
freeswitch/trunk/src/switch_loadable_module.c
Log:
fix for FSCORE-27 @8000k and @8000h both count as rate qualifiers advertising h going forward
Modified: freeswitch/trunk/src/switch_loadable_module.c
==============================================================================
--- freeswitch/trunk/src/switch_loadable_module.c (original)
+++ freeswitch/trunk/src/switch_loadable_module.c Sat May 19 20:38:25 2007
@@ -1259,7 +1259,7 @@
if (cur != name) {
if (strchr(cur, 'i')) {
interval = atoi(cur);
- } else if (strchr(cur, 'k')) {
+ } else if (strchr(cur, 'k' || strchr(cur, 'h'))) {
rate = atoi(cur);
}
}
More information about the Freeswitch-svn
mailing list