dect
/
asterisk
Archived
13
0
Fork 0

Rename ooh323.conf to chan_ooh323.conf, make module support both names

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@204428 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2009-06-30 17:18:18 +00:00
parent c64c92ed31
commit 937ceb79f8
2 changed files with 6 additions and 2 deletions

View File

@ -40,7 +40,8 @@
/* Channel description */
static const char type[] = "OOH323";
static const char tdesc[] = "Objective Systems H323 Channel Driver";
static const char config[] = "ooh323.conf";
static const char config[] = "chan_ooh323.conf";
static const char config_old[] = "ooh323.conf";
/* Channel Definition */
@ -1744,7 +1745,10 @@ int reload_config(int reload)
if (gH323Debug)
ast_verbose("--- reload_config\n");
cfg = ast_config_load((char*)config, config_flags);
cfg = ast_config_load(config, config_flags);
if (!cfg) {
cfg = ast_config_load(config_old, config_flags);
}
/* We *must* have a config file otherwise stop immediately */
if (!cfg) {