[Freeswitch-svn] [commit] r12103 - freeswitch/trunk/src

FreeSWITCH SVN brian at freeswitch.org
Tue Feb 17 09:49:13 PST 2009


Author: brian
Date: Tue Feb 17 11:49:12 2009
New Revision: 12103

Log:
this exception allowed for 1 thru 120 but two values are valud and thats 20 and 30 ONLY.  30 wins in all cases

Modified:
   freeswitch/trunk/src/switch_core_codec.c

Modified: freeswitch/trunk/src/switch_core_codec.c
==============================================================================
--- freeswitch/trunk/src/switch_core_codec.c	(original)
+++ freeswitch/trunk/src/switch_core_codec.c	Tue Feb 17 11:49:12 2009
@@ -442,7 +442,7 @@
 		mode += 5;
 		if (mode) {
 			mms = atoi(mode);
-			if (mms > 0 && mms < 120) {
+			if (mms == 20 || mms == 30) {
 				ms = mms;
 			}
 		}



More information about the Freeswitch-svn mailing list