summaryrefslogtreecommitdiff
path: root/addons/chan_mobile.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2009-06-30 17:16:56 +0000
committerRussell Bryant <russell@russellbryant.com>2009-06-30 17:16:56 +0000
commit564b7aa8483cba9dc42f8f13da6dea9241bd083c (patch)
tree38e54074adeb261dcfdb55ad9873f35a0f3d02a4 /addons/chan_mobile.c
parentd806ae0da0811f26d23fd241ede8840d09cf74e4 (diff)
Rename mobile.conf to chan_mobile.conf, make module support old name, too
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@204423 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'addons/chan_mobile.c')
-rw-r--r--addons/chan_mobile.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/addons/chan_mobile.c b/addons/chan_mobile.c
index 415ca617e..95aed48fd 100644
--- a/addons/chan_mobile.c
+++ b/addons/chan_mobile.c
@@ -64,7 +64,8 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk/manager.h"
#include "asterisk/io.h"
-#define MBL_CONFIG "mobile.conf"
+#define MBL_CONFIG "chan_mobile.conf"
+#define MBL_CONFIG_OLD "mobile.conf"
#define DEVICE_FRAME_SIZE 48
#define DEVICE_FRAME_FORMAT AST_FORMAT_SLINEAR
@@ -4075,6 +4076,9 @@ static int mbl_load_config(void)
struct ast_flags config_flags = { 0 };
cfg = ast_config_load(MBL_CONFIG, config_flags);
+ if (!cfg) {
+ cfg = ast_config_load(MBL_CONFIG_OLD, config_flags);
+ }
if (!cfg)
return -1;