aboutsummaryrefslogtreecommitdiffstats
path: root/config.c
diff options
context:
space:
mode:
authoranthm <anthm@f38db490-d61c-443f-a65b-d21fe96a405b>2004-12-28 14:53:40 +0000
committeranthm <anthm@f38db490-d61c-443f-a65b-d21fe96a405b>2004-12-28 14:53:40 +0000
commit06d84a8a1f67a4b6d449e1708c4719804a11dbd8 (patch)
treed57a4347392c1a2dcf1d41919110f927241ed593 /config.c
parentc091ed4d081a199be075ed05a198948727ed07c7 (diff)
tiny tweak to allow pvt config engines to use __ast_load
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4567 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'config.c')
-rwxr-xr-xconfig.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/config.c b/config.c
index 31f438158..f63e20a00 100755
--- a/config.c
+++ b/config.c
@@ -230,7 +230,7 @@ static struct ast_config_reg *get_config_registrations(void)
}
-static struct ast_config *__ast_load(const char *configfile, struct ast_config *tmp, struct ast_category **_tmpc, struct ast_variable **_last, int includelevel);
+
static int cfg_process(struct ast_config *tmp, struct ast_category **_tmpc, struct ast_variable **_last, char *buf, int lineno, const char *configfile, int includelevel )
{
@@ -306,7 +306,7 @@ static int cfg_process(struct ast_config *tmp, struct ast_category **_tmpc, stru
if(arg && cur) {
ast_log(LOG_WARNING, "Including files with explicit config engine no longer permitted. Please use extconfig.conf to specify all mappings\n");
} else {
- if (!__ast_load(cur, tmp, _tmpc, _last, includelevel + 1))
+ if (!ast_internal_load(cur, tmp, _tmpc, _last, includelevel + 1))
return -1;
}
} else
@@ -469,7 +469,7 @@ int ast_update_realtime(const char *family, const char *keyfield, const char *lo
return res;
}
-static struct ast_config *__ast_load(const char *configfile, struct ast_config *tmp, struct ast_category **_tmpc, struct ast_variable **_last, int includelevel)
+struct ast_config *ast_internal_load(const char *configfile, struct ast_config *tmp, struct ast_category **_tmpc, struct ast_variable **_last, int includelevel)
{
char fn[256];
char buf[8192];
@@ -676,7 +676,7 @@ struct ast_config *ast_load(char *configfile)
struct ast_category *tmpc=NULL;
struct ast_variable *last = NULL;
- return __ast_load(configfile, NULL, &tmpc, &last, 0);
+ return ast_internal_load(configfile, NULL, &tmpc, &last, 0);
}
void ast_category_append(struct ast_config *config, struct ast_category *cat)