aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--addons/chan_ooh323.c8
-rw-r--r--configs/chan_ooh323.conf.sample (renamed from configs/ooh323.conf.sample)0
2 files changed, 6 insertions, 2 deletions
diff --git a/addons/chan_ooh323.c b/addons/chan_ooh323.c
index 70c0f0209..9e087085f 100644
--- a/addons/chan_ooh323.c
+++ b/addons/chan_ooh323.c
@@ -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) {
diff --git a/configs/ooh323.conf.sample b/configs/chan_ooh323.conf.sample
index 6d14bcbc5..6d14bcbc5 100644
--- a/configs/ooh323.conf.sample
+++ b/configs/chan_ooh323.conf.sample