[asterisk-commits] tilghman: branch 1.8 r283175 -	/branches/1.8/res/res_stun_monitor.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Mon Aug 23 07:11:49 CDT 2010
    
    
  
Author: tilghman
Date: Mon Aug 23 07:06:26 2010
New Revision: 283175
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=283175
Log:
Don't fail to start if the config file is missing.
Modified:
    branches/1.8/res/res_stun_monitor.c
Modified: branches/1.8/res/res_stun_monitor.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/res/res_stun_monitor.c?view=diff&rev=283175&r1=283174&r2=283175
==============================================================================
--- branches/1.8/res/res_stun_monitor.c (original)
+++ branches/1.8/res/res_stun_monitor.c Mon Aug 23 07:06:26 2010
@@ -297,7 +297,7 @@
 	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;
    
    
More information about the asterisk-commits
mailing list