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

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@204428 65c4cc65-6c06-0410-ace0-fbb531ad65f3
certified/1.8.6
Russell Bryant 16 years ago
parent 564b7aa848
commit 1ae0291374

@ -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) {

Loading…
Cancel
Save