aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-10-07 19:57:50 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-10-07 19:57:50 +0000
commit4b70e1861c45067a12e7e7bbc0016595dedaceae (patch)
tree89532a9b97c1cd3fdab1835ab275faf4b3f79ffc /include
parent4557e78ccd38f08042dce76cd360d5a6bbf46596 (diff)
Oops, we have to be able to pass multiple restrictions for when we go to voicemail...
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3937 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rwxr-xr-xinclude/asterisk/config.h2
-rwxr-xr-xinclude/asterisk/config_pvt.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/asterisk/config.h b/include/asterisk/config.h
index 89e66437b..1bc362299 100755
--- a/include/asterisk/config.h
+++ b/include/asterisk/config.h
@@ -114,7 +114,7 @@ int ast_category_exist(struct ast_config *config, char *category_name);
* that unlike the variables in ast_config, the resulting list of variables
* MUST be fred with ast_free_runtime() as there is no container.
*/
-struct ast_variable *ast_load_realtime(const char *family, const char *keyfield, const char *lookup);
+struct ast_variable *ast_load_realtime(const char *family, ...);
//! Update realtime configuration
/*!
diff --git a/include/asterisk/config_pvt.h b/include/asterisk/config_pvt.h
index e33d92de9..1e7238e7c 100755
--- a/include/asterisk/config_pvt.h
+++ b/include/asterisk/config_pvt.h
@@ -30,7 +30,7 @@ struct ast_category;
struct ast_config_reg {
char name[CONFIG_KEYWORD_STRLEN];
struct ast_config *(*static_func)(const char *database, const char *table, const char *, struct ast_config *,struct ast_category **,struct ast_variable **,int);
- struct ast_variable *(*realtime_func)(const char *database, const char *table, const char *keyfield, const char *entity);
+ struct ast_variable *(*realtime_func)(const char *database, const char *table, va_list ap);
int (*update_func)(const char *database, const char *table, const char *keyfield, const char *entity, va_list ap);
struct ast_config_reg *next;
};