[asterisk-commits] qwell: branch 1.8 r419374 - /branches/1.8/addons/chan_ooh323.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Jul 24 11:48:00 CDT 2014
Author: qwell
Date: Thu Jul 24 11:47:57 2014
New Revision: 419374
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=419374
Log:
Don't cause Asterisk to exit if ooh323.conf not found.
(closes issue ASTERISK-23814)
Modified:
branches/1.8/addons/chan_ooh323.c
Modified: branches/1.8/addons/chan_ooh323.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/addons/chan_ooh323.c?view=diff&rev=419374&r1=419373&r2=419374
==============================================================================
--- branches/1.8/addons/chan_ooh323.c (original)
+++ branches/1.8/addons/chan_ooh323.c Thu Jul 24 11:47:57 2014
@@ -3317,7 +3317,7 @@
/* Make sure we can register our OOH323 channel type */
if (ast_channel_register(&ooh323_tech)) {
ast_log(LOG_ERROR, "Unable to register channel class %s\n", type);
- return AST_MODULE_LOAD_FAILURE;
+ return AST_MODULE_LOAD_DECLINE;
}
ast_rtp_glue_register(&ooh323_rtp);
ast_udptl_proto_register(&ooh323_udptl);
@@ -3327,7 +3327,7 @@
if (OO_OK != ooH323EpInitialize(OO_CALLMODE_AUDIOCALL, gLogFile)) {
ast_log(LOG_ERROR, "Failed to initialize OOH323 endpoint-"
"OOH323 Disabled\n");
- return AST_MODULE_LOAD_FAILURE;
+ return AST_MODULE_LOAD_DECLINE;
}
if (gIsGateway)
@@ -3427,7 +3427,7 @@
restart_monitor();
} else {
ast_log(LOG_ERROR, "Can't load ooh323 config file, OOH323 Disabled\n");
- return AST_MODULE_LOAD_FAILURE;
+ return AST_MODULE_LOAD_DECLINE;
}
return 0;
More information about the asterisk-commits
mailing list