aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/config.h
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-10-08 05:36:23 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-10-08 05:36:23 +0000
commit61a220cf4fd50c41ec71343fcb439e1a46994be2 (patch)
tree0cb947f2f4d6a51abc00fb0b553db3a0b1acce2b /include/asterisk/config.h
parent99d5bcb07ebfdee7f625e241f9c31b5f50a2601b (diff)
realtimeify voicemail...
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3947 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/config.h')
-rwxr-xr-xinclude/asterisk/config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asterisk/config.h b/include/asterisk/config.h
index 1bc362299..e377f7ce6 100755
--- a/include/asterisk/config.h
+++ b/include/asterisk/config.h
@@ -86,7 +86,7 @@ char *ast_variable_retrieve(struct ast_config *config, char *category, char *val
* 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 @@ int ast_true(char *val);
* 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
/*!