dect
/
asterisk
Archived
13
0
Fork 0

don't return -1 if zapata.conf is not present (part of the patch from

issue #7290, tzafrir)


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@32545 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2006-06-06 14:24:59 +00:00
parent 169754edd2
commit 25c3f93be8
1 changed files with 1 additions and 1 deletions

View File

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