mirror of
https://github.com/asterisk/asterisk.git
synced 2026-07-23 07:54:50 -07:00
don't return -1 if zapata.conf is not present (part of the patch from
issue #7290, tzafrir) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32545 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
+1
-1
@@ -10250,7 +10250,7 @@ static int setup_zap(int reload)
|
|||||||
/* We *must* have a config file otherwise stop immediately */
|
/* We *must* have a config file otherwise stop immediately */
|
||||||
if (!cfg) {
|
if (!cfg) {
|
||||||
ast_log(LOG_ERROR, "Unable to load config %s\n", config);
|
ast_log(LOG_ERROR, "Unable to load config %s\n", config);
|
||||||
return -1;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user