<p>Joshua Colp <strong>merged</strong> this change.</p><p><a href="https://gerrit.asterisk.org/7492">View Change</a></p><div style="white-space:pre-wrap">Approvals:
  Joshua Colp: Looks good to me, but someone else must approve; Approved for Submit
  Sean Bright: Looks good to me, but someone else must approve
  George Joseph: Looks good to me, approved

</div><pre style="font-family: monospace,monospace; white-space: pre-wrap;">res_stasis and res_speech: Fix load order.<br><br>res_stasis was missing AST_MODFLAG_LOAD_ORDER.  Set res_stasis and<br>res_speech to start at (AST_MODPRI_APP_DEPEND - 1) so they are ready for<br>dependent modules.<br><br>Change-Id: I27f4f3810a95b6be8a5bfbf62be2ace6bfab6ff3<br>---<br>M res/res_speech.c<br>M res/res_stasis.c<br>2 files changed, 3 insertions(+), 3 deletions(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">diff --git a/res/res_speech.c b/res/res_speech.c<br>index d6c5329..31ad61a 100644<br>--- a/res/res_speech.c<br>+++ b/res/res_speech.c<br>@@ -363,5 +363,5 @@<br>     .support_level = AST_MODULE_SUPPORT_CORE,<br>     .load = load_module,<br>  .unload = unload_module,<br>-     .load_pri = AST_MODPRI_APP_DEPEND,<br>+   .load_pri = AST_MODPRI_APP_DEPEND - 1,<br> );<br>diff --git a/res/res_stasis.c b/res/res_stasis.c<br>index f99dcee..42a19bf 100644<br>--- a/res/res_stasis.c<br>+++ b/res/res_stasis.c<br>@@ -2155,8 +2155,8 @@<br>   return AST_MODULE_LOAD_SUCCESS;<br> }<br> <br>-AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS, "Stasis application support",<br>-       .load_pri = AST_MODPRI_APP_DEPEND,<br>+AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS | AST_MODFLAG_LOAD_ORDER, "Stasis application support",<br>+  .load_pri = AST_MODPRI_APP_DEPEND - 1,<br>        .support_level = AST_MODULE_SUPPORT_CORE,<br>     .load = load_module,<br>  .unload = unload_module,<br></pre><p>To view, visit <a href="https://gerrit.asterisk.org/7492">change 7492</a>. To unsubscribe, visit <a href="https://gerrit.asterisk.org/settings">settings</a>.</p><div itemscope itemtype="http://schema.org/EmailMessage"><div itemscope itemprop="action" itemtype="http://schema.org/ViewAction"><link itemprop="url" href="https://gerrit.asterisk.org/7492"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: asterisk </div>
<div style="display:none"> Gerrit-Branch: master </div>
<div style="display:none"> Gerrit-MessageType: merged </div>
<div style="display:none"> Gerrit-Change-Id: I27f4f3810a95b6be8a5bfbf62be2ace6bfab6ff3 </div>
<div style="display:none"> Gerrit-Change-Number: 7492 </div>
<div style="display:none"> Gerrit-PatchSet: 1 </div>
<div style="display:none"> Gerrit-Owner: Corey Farrell <git@cfware.com> </div>
<div style="display:none"> Gerrit-Reviewer: George Joseph <gjoseph@digium.com> </div>
<div style="display:none"> Gerrit-Reviewer: Jenkins2 </div>
<div style="display:none"> Gerrit-Reviewer: Joshua Colp <jcolp@digium.com> </div>
<div style="display:none"> Gerrit-Reviewer: Sean Bright <sean.bright@gmail.com> </div>