<p>Josh Soref has uploaded this change for <strong>review</strong>.</p><p><a href="https://gerrit.asterisk.org/c/asterisk/+/17168">View Change</a></p><pre style="font-family: monospace,monospace; white-space: pre-wrap;">spelling: retrieve<br><br>Change-Id: I8112fd26c4b44c5f9fd949b9a13511d9d9eb08a7<br>---<br>M addons/ooh323c/src/ooSocket.h<br>M addons/ooh323c/src/ooq931.h<br>M include/asterisk/alaw.h<br>M include/asterisk/ulaw.h<br>M res/res_pjsip/config_transport.c<br>M res/res_pjsip_pubsub.c<br>6 files changed, 7 insertions(+), 7 deletions(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/68/17168/1</pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;"><span>diff --git a/addons/ooh323c/src/ooSocket.h b/addons/ooh323c/src/ooSocket.h</span><br><span>index e942df9..15df63d 100644</span><br><span>--- a/addons/ooh323c/src/ooSocket.h</span><br><span>+++ b/addons/ooh323c/src/ooSocket.h</span><br><span>@@ -369,7 +369,7 @@</span><br><span> /* EXTERN int ooSocketConvertIpToNwAddr(char *inetIp, unsigned char *netIp); */</span><br><span> </span><br><span> /**</span><br><span style="color: hsl(0, 100%, 40%);">- * This function retrives the IP address of the local host.</span><br><span style="color: hsl(120, 100%, 40%);">+ * This function retrieves the IP address of the local host.</span><br><span>  *</span><br><span>  * @param pIPAddrs   Pointer to a char buffer in which local IP address will be</span><br><span>  *                   returned.</span><br><span>diff --git a/addons/ooh323c/src/ooq931.h b/addons/ooh323c/src/ooq931.h</span><br><span>index 57c0b3f..18c014b 100644</span><br><span>--- a/addons/ooh323c/src/ooq931.h</span><br><span>+++ b/addons/ooh323c/src/ooq931.h</span><br><span>@@ -418,7 +418,7 @@</span><br><span> EXTERN int ooFreeQ931Message(OOCTXT* pctxt, Q931Message *q931Msg);</span><br><span> </span><br><span> /**</span><br><span style="color: hsl(0, 100%, 40%);">- * This function is invoked to retrive the outgoing message buffer for</span><br><span style="color: hsl(120, 100%, 40%);">+ * This function is invoked to retrieve the outgoing message buffer for</span><br><span>  * Q931 message</span><br><span>  *</span><br><span>  * @param call     Pointer to call for which outgoing Q931 message has to be</span><br><span>diff --git a/include/asterisk/alaw.h b/include/asterisk/alaw.h</span><br><span>index 0ef42be..dd56295 100644</span><br><span>--- a/include/asterisk/alaw.h</span><br><span>+++ b/include/asterisk/alaw.h</span><br><span>@@ -55,7 +55,7 @@</span><br><span> /*! \brief Convert signed linear sample to sign-magnitude pair for a-Law */</span><br><span> static inline void ast_alaw_get_sign_mag(short sample, unsigned *sign, unsigned *mag)</span><br><span> {</span><br><span style="color: hsl(0, 100%, 40%);">-        /* It may look illogical to retrive the sign this way in both cases,</span><br><span style="color: hsl(120, 100%, 40%);">+  /* It may look illogical to retrieve the sign this way in both cases,</span><br><span>         * but this helps gcc eliminate the branch below and produces</span><br><span>         * faster code */</span><br><span>    *sign = ((unsigned short)sample >> 8) & AST_ALAW_SIGN_BIT;</span><br><span>diff --git a/include/asterisk/ulaw.h b/include/asterisk/ulaw.h</span><br><span>index 0f3eae5..1dc744d 100644</span><br><span>--- a/include/asterisk/ulaw.h</span><br><span>+++ b/include/asterisk/ulaw.h</span><br><span>@@ -57,7 +57,7 @@</span><br><span> /*! \brief convert signed linear sample to sign-magnitude pair for u-Law */</span><br><span> static inline void ast_ulaw_get_sign_mag(short sample, unsigned *sign, unsigned *mag)</span><br><span> {</span><br><span style="color: hsl(0, 100%, 40%);">-       /* It may look illogical to retrive the sign this way in both cases,</span><br><span style="color: hsl(120, 100%, 40%);">+       /* It may look illogical to retrieve the sign this way in both cases,</span><br><span>         * but this helps gcc eliminate the branch below and produces</span><br><span>         * faster code */</span><br><span>        *sign = ((unsigned short)sample >> 8) & AST_ULAW_SIGN_BIT;</span><br><span>diff --git a/res/res_pjsip/config_transport.c b/res/res_pjsip/config_transport.c</span><br><span>index 502ad5b..f6c365e 100644</span><br><span>--- a/res/res_pjsip/config_transport.c</span><br><span>+++ b/res/res_pjsip/config_transport.c</span><br><span>@@ -1682,7 +1682,7 @@</span><br><span>      ast_sip_register_cli_formatter(cli_formatter);</span><br><span>       ast_cli_register_multiple(cli_commands, ARRAY_LEN(cli_commands));</span><br><span> </span><br><span style="color: hsl(0, 100%, 40%);">-   /* trigger load of transports from realtime by trying to revrieve them all */</span><br><span style="color: hsl(120, 100%, 40%);">+ /* trigger load of transports from realtime by trying to retrieve them all */</span><br><span>        transports = ast_sorcery_retrieve_by_fields(sorcery, "transport", AST_RETRIEVE_FLAG_ALL | AST_RETRIEVE_FLAG_MULTIPLE, NULL);</span><br><span>       ao2_cleanup(transports);</span><br><span> </span><br><span>diff --git a/res/res_pjsip_pubsub.c b/res/res_pjsip_pubsub.c</span><br><span>index e62582f..a696ccc 100644</span><br><span>--- a/res/res_pjsip_pubsub.c</span><br><span>+++ b/res/res_pjsip_pubsub.c</span><br><span>@@ -1628,7 +1628,7 @@</span><br><span>    expires = (ast_tvdiff_ms(persistence->expires, ast_tvnow()) / 1000);</span><br><span>      if (expires <= 0) {</span><br><span>               /* The subscription expired since we started recreating the subscription. */</span><br><span style="color: hsl(0, 100%, 40%);">-            ast_debug(3, "Expired subscription retrived from persistent store '%s' %s\n",</span><br><span style="color: hsl(120, 100%, 40%);">+               ast_debug(3, "Expired subscription retrieved from persistent store '%s' %s\n",</span><br><span>                     persistence->endpoint, persistence->tag);</span><br><span>              ast_sorcery_delete(ast_sip_get_sorcery(), persistence);</span><br><span>              ao2_ref(endpoint, -1);</span><br><span>@@ -1699,7 +1699,7 @@</span><br><span> </span><br><span>   /* If this subscription has already expired remove it */</span><br><span>     if (ast_tvdiff_ms(persistence->expires, ast_tvnow()) <= 0) {</span><br><span style="color: hsl(0, 100%, 40%);">-              ast_debug(3, "Expired subscription retrived from persistent store '%s' %s\n",</span><br><span style="color: hsl(120, 100%, 40%);">+               ast_debug(3, "Expired subscription retrieved from persistent store '%s' %s\n",</span><br><span>                     persistence->endpoint, persistence->tag);</span><br><span>              ast_sorcery_delete(ast_sip_get_sorcery(), persistence);</span><br><span>              return 0;</span><br><span></span><br></pre><p>To view, visit <a href="https://gerrit.asterisk.org/c/asterisk/+/17168">change 17168</a>. To unsubscribe, or for help writing mail filters, 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/c/asterisk/+/17168"/><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-Change-Id: I8112fd26c4b44c5f9fd949b9a13511d9d9eb08a7 </div>
<div style="display:none"> Gerrit-Change-Number: 17168 </div>
<div style="display:none"> Gerrit-PatchSet: 1 </div>
<div style="display:none"> Gerrit-Owner: Josh Soref <jsoref@gmail.com> </div>
<div style="display:none"> Gerrit-CC: Friendly Automation </div>
<div style="display:none"> Gerrit-MessageType: newchange </div>