Don't die if no config file

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1498 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer 2003-09-12 03:21:14 +00:00
parent 78ef0d0ebe
commit 3672619e13

View file

@ -2386,14 +2386,14 @@ static int reload_config()
if (gethostname(ourhost, sizeof(ourhost))) {
ast_log(LOG_WARNING, "Unable to get hostname, Skinny disabled\n");
return 1;
return 0;
}
cfg = ast_load(config);
/* We *must* have a config file otherwise stop immediately */
if (!cfg) {
ast_log(LOG_NOTICE, "Unable to load config %s, Skinny disabled\n", config);
return 1;
return 0;
}
/* load the general section */