From 5da7daf1fc778e23ee2e9f85af9c02e8878d7581 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher <tilghman@meg.abyt.es> Date: Mon, 23 Aug 2010 12:09:17 +0000 Subject: [PATCH] Merged revisions 283175 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r283175 | tilghman | 2010-08-23 07:06:26 -0500 (Mon, 23 Aug 2010) | 2 lines Don't fail to start if the config file is missing. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@283176 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_stun_monitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- GitLab