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
1.4
Russell Bryant 19 years ago
parent 24818d53b1
commit fa595a8d82

@ -10250,7 +10250,7 @@ static int setup_zap(int reload)
/* We *must* have a config file otherwise stop immediately */
if (!cfg) {
ast_log(LOG_ERROR, "Unable to load config %s\n", config);
return -1;
return 0;
}

Loading…
Cancel
Save