mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-13 00:04:53 +00:00
Make voicemail not terminate asterisk if no config file
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7123 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2005-11-16 Jeremy McNamara <jj@nufone.net>
|
||||
|
||||
* apps/app_voicemail.c (load_config): do not terminate asterisk if no voicemail config file
|
||||
|
||||
2005-11-16 Josh Roberson <josh@asteriasgi.com>
|
||||
|
||||
* Makefile: Update to fix non-responsive remote console on Darwin (OSX)(issue #5757)
|
||||
|
@@ -6228,8 +6228,8 @@ static int load_config(void)
|
||||
return 0;
|
||||
} else {
|
||||
ast_mutex_unlock(&vmlock);
|
||||
ast_log(LOG_WARNING, "Error reading voicemail config\n");
|
||||
return -1;
|
||||
ast_log(LOG_WARNING, "Failed to load configuration file. Module not activated.\n");
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user