[Asterisk-cvs] asterisk/include/asterisk config.h,1.10,1.11

markster at lists.digium.com markster at lists.digium.com
Fri Oct 8 01:35:09 CDT 2004


Update of /usr/cvsroot/asterisk/include/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv22182/include/asterisk

Modified Files:
	config.h 
Log Message:
realtimeify voicemail...


Index: config.h
===================================================================
RCS file: /usr/cvsroot/asterisk/include/asterisk/config.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- config.h	7 Oct 2004 19:57:50 -0000	1.10
+++ config.h	8 Oct 2004 05:36:23 -0000	1.11
@@ -86,7 +86,7 @@
  * This function checks to see whether a string passed to it is an indication of an affirmitave value.  It checks to see if the string is "yes", "true", "y", "t", and "1".  
  * Returns 0 if the value of s is a NULL pointer, 0 on "truth", and -1 on falsehood.
  */
-int ast_true(char *val);
+int ast_true(const char *val);
 
 //! Make sure something is false
 /*!
@@ -94,7 +94,7 @@
  * This function checks to see whether a string passed to it is an indication of a negatirve value.  It checks to see if the string is "no", "false", "n", "f", and "0".  
  * Returns 0 if the value of s is a NULL pointer, 0 on "truth", and -1 on falsehood.
  */
-int ast_false(char *val);
+int ast_false(const char *val);
 
 //! Check for category duplicates
 /*!




More information about the svn-commits mailing list