From: Tilghman Lesher Date: Mon, 23 Aug 2010 12:06:26 +0000 (+0000) Subject: Don't fail to start if the config file is missing. X-Git-Tag: 1.8.0-beta4~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4c2e1000a08e12b8e42ade82d545631cf83c5bd1;p=thirdparty%2Fasterisk.git Don't fail to start if the config file is missing. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@283175 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_stun_monitor.c b/res/res_stun_monitor.c index 807f885dbe..54be1e44c6 100644 --- a/res/res_stun_monitor.c +++ b/res/res_stun_monitor.c @@ -297,7 +297,7 @@ static int load_module(void) if (__reload(1)) { stun_stop_monitor(); ast_mutex_destroy(&args.lock); - return AST_MODULE_LOAD_FAILURE; + return AST_MODULE_LOAD_DECLINE; } return AST_MODULE_LOAD_SUCCESS;