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:
Jeremy McNamara
2005-11-16 21:02:25 +00:00
parent c86be56b3b
commit 3dc12025c8
2 changed files with 6 additions and 2 deletions

View File

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

View File

@@ -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;
}
}