[Freeswitch-svn] [commit] r4158 - freeswitch/trunk/src/include

Freeswitch SVN brian at freeswitch.org
Wed Feb 7 20:19:35 EST 2007


Author: brian
Date: Wed Feb  7 20:19:35 2007
New Revision: 4158

Modified:
   freeswitch/trunk/src/include/switch_utils.h

Log:
Small buglet.


Modified: freeswitch/trunk/src/include/switch_utils.h
==============================================================================
--- freeswitch/trunk/src/include/switch_utils.h	(original)
+++ freeswitch/trunk/src/include/switch_utils.h	Wed Feb  7 20:19:35 2007
@@ -122,7 +122,7 @@
   \param key the key to test
   \return TRUE or FALSE
  */
-#define is_dtmf(key)  ((key > 47 && key < 58) || (key > 64 && key < 69) || (key > 96 && key < 101) || key == 35 || key == 42 || key == 87 || key = 119)
+#define is_dtmf(key)  ((key > 47 && key < 58) || (key > 64 && key < 69) || (key > 96 && key < 101) || key == 35 || key == 42 || key == 87 || key == 119)
 
 /*!
   \brief Duplicate a string 



More information about the Freeswitch-svn mailing list