From d6f33f273d63c3abd107dcd46bea63850af560ab Mon Sep 17 00:00:00 2001 From: Mark Spencer <markster@digium.com> Date: Sun, 14 Sep 2003 04:03:28 +0000 Subject: [PATCH] Don't die if no skinny config git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1517 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_skinny.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/channels/chan_skinny.c b/channels/chan_skinny.c index 3017fe1e0f..7d7e3f09f1 100755 --- a/channels/chan_skinny.c +++ b/channels/chan_skinny.c @@ -2473,14 +2473,14 @@ static int reload_config(void) 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 */ -- GitLab