<p>Josh Soref has uploaded this change for <strong>review</strong>.</p><p><a href="https://gerrit.asterisk.org/c/asterisk/+/17053">View Change</a></p><pre style="font-family: monospace,monospace; white-space: pre-wrap;">spelling: nonexistent<br><br>Change-Id: I6d5dffecc1b2a96ed43ac5e2f9e76b6e12e0133c<br>---<br>M channels/chan_skinny.c<br>M main/channel.c<br>M res/res_sorcery_memory_cache.c<br>M tests/test_format_cache.c<br>M tests/test_voicemail_api.c<br>5 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/53/17053/1</pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;"><span>diff --git a/channels/chan_skinny.c b/channels/chan_skinny.c</span><br><span>index bb42932..25a4267 100644</span><br><span>--- a/channels/chan_skinny.c</span><br><span>+++ b/channels/chan_skinny.c</span><br><span>@@ -5992,7 +5992,7 @@</span><br><span>           sub->substate = SUBSTATE_HOLD;</span><br><span>            break;</span><br><span>       default:</span><br><span style="color: hsl(0, 100%, 40%);">-                ast_log(LOG_WARNING, "Was asked to change to nonexistant substate %d on Sub-%u\n", state, sub->callid);</span><br><span style="color: hsl(120, 100%, 40%);">+          ast_log(LOG_WARNING, "Was asked to change to nonexistent substate %d on Sub-%u\n", state, sub->callid);</span><br><span>         }</span><br><span>    skinny_unlocksub(sub);</span><br><span> }</span><br><span>diff --git a/main/channel.c b/main/channel.c</span><br><span>index 05323c3..ee57c51 100644</span><br><span>--- a/main/channel.c</span><br><span>+++ b/main/channel.c</span><br><span>@@ -170,9 +170,9 @@</span><br><span>       { AST_CAUSE_INCOMPATIBLE_DESTINATION, "INCOMPATIBLE_DESTINATION", "Incompatible destination" },</span><br><span>  { AST_CAUSE_INVALID_MSG_UNSPECIFIED, "INVALID_MSG_UNSPECIFIED", "Invalid message unspecified" },</span><br><span>         { AST_CAUSE_MANDATORY_IE_MISSING, "MANDATORY_IE_MISSING", "Mandatory information element is missing" },</span><br><span style="color: hsl(0, 100%, 40%);">-     { AST_CAUSE_MESSAGE_TYPE_NONEXIST, "MESSAGE_TYPE_NONEXIST", "Message type nonexist." },</span><br><span style="color: hsl(120, 100%, 40%);">+   { AST_CAUSE_MESSAGE_TYPE_NONEXIST, "MESSAGE_TYPE_NONEXIST", "Message type nonexistent." },</span><br><span>       { AST_CAUSE_WRONG_MESSAGE, "WRONG_MESSAGE", "Wrong message" },</span><br><span style="color: hsl(0, 100%, 40%);">-      { AST_CAUSE_IE_NONEXIST, "IE_NONEXIST", "Info. element nonexist or not implemented" },</span><br><span style="color: hsl(120, 100%, 40%);">+    { AST_CAUSE_IE_NONEXIST, "IE_NONEXIST", "Info. element nonexistent or not implemented" },</span><br><span>        { AST_CAUSE_INVALID_IE_CONTENTS, "INVALID_IE_CONTENTS", "Invalid information element contents" },</span><br><span>        { AST_CAUSE_WRONG_CALL_STATE, "WRONG_CALL_STATE", "Message not compatible with call state" },</span><br><span>    { AST_CAUSE_RECOVERY_ON_TIMER_EXPIRE, "RECOVERY_ON_TIMER_EXPIRE", "Recover on timer expiry" },</span><br><span>diff --git a/res/res_sorcery_memory_cache.c b/res/res_sorcery_memory_cache.c</span><br><span>index 03444c2..e8bb30e 100644</span><br><span>--- a/res/res_sorcery_memory_cache.c</span><br><span>+++ b/res/res_sorcery_memory_cache.c</span><br><span>@@ -3002,7 +3002,7 @@</span><br><span>  * \brief Callback for retrieving sorcery object by ID</span><br><span>  *</span><br><span>  * The mock wizard uses the \ref real_backend_data in order to construct</span><br><span style="color: hsl(0, 100%, 40%);">- * objects. If the backend data is "nonexisent" then no object is returned.</span><br><span style="color: hsl(120, 100%, 40%);">+ * objects. If the backend data is "nonexistent" then no object is returned.</span><br><span>  * Otherwise, an object is created that has the backend data's salt and</span><br><span>  * pepper values copied.</span><br><span>  *</span><br><span>@@ -3037,7 +3037,7 @@</span><br><span>  * \brief Callback for retrieving multiple sorcery objects</span><br><span>  *</span><br><span>  * The mock wizard uses the \ref real_backend_data in order to construct</span><br><span style="color: hsl(0, 100%, 40%);">- * objects. If the backend data is "nonexisent" then no object is returned.</span><br><span style="color: hsl(120, 100%, 40%);">+ * objects. If the backend data is "nonexistent" then no object is returned.</span><br><span>  * Otherwise, the number of objects matching the exists value will be returned.</span><br><span>  *</span><br><span>  * \param sorcery The sorcery instance</span><br><span>diff --git a/tests/test_format_cache.c b/tests/test_format_cache.c</span><br><span>index 2ed9780..8d813c3 100644</span><br><span>--- a/tests/test_format_cache.c</span><br><span>+++ b/tests/test_format_cache.c</span><br><span>@@ -208,7 +208,7 @@</span><br><span> </span><br><span>         switch (cmd) {</span><br><span>       case TEST_INIT:</span><br><span style="color: hsl(0, 100%, 40%);">-         info->name = "format_cache_get_nonxistent";</span><br><span style="color: hsl(120, 100%, 40%);">+              info->name = "format_cache_get_nonexistent";</span><br><span>            info->category = "/main/format_cache/";</span><br><span>                 info->summary = "format cache get unit test";</span><br><span>           info->description =</span><br><span>diff --git a/tests/test_voicemail_api.c b/tests/test_voicemail_api.c</span><br><span>index 2338e38..faf99bc 100644</span><br><span>--- a/tests/test_voicemail_api.c</span><br><span>+++ b/tests/test_voicemail_api.c</span><br><span>@@ -933,7 +933,7 @@</span><br><span>            info->description =</span><br><span>                       "Test off nominal requests for mailbox snapshots.  This includes"</span><br><span>                  " testing the following:\n"</span><br><span style="color: hsl(0, 100%, 40%);">-                   " * Access to non-exisstent mailbox\n"</span><br><span style="color: hsl(120, 100%, 40%);">+                      " * Access to nonexistent mailbox\n"</span><br><span>                       " * Access to NULL mailbox\n"</span><br><span>                      " * Access to non-existent context\n"</span><br><span>                      " * Access to non-existent folder\n"</span><br><span></span><br></pre><p>To view, visit <a href="https://gerrit.asterisk.org/c/asterisk/+/17053">change 17053</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/+/17053"/><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: I6d5dffecc1b2a96ed43ac5e2f9e76b6e12e0133c </div>
<div style="display:none"> Gerrit-Change-Number: 17053 </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>