[asterisk-commits] file: trunk r114024 - in /trunk: channels/ main/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Apr 10 08:45:45 CDT 2008
Author: file
Date: Thu Apr 10 08:45:45 2008
New Revision: 114024
URL: http://svn.digium.com/view/asterisk?view=rev&rev=114024
Log:
Fix spelling of existent in a few places.
(closes issue #12409)
Reported by: candlerb
Modified:
trunk/channels/chan_skinny.c
trunk/channels/chan_unistim.c
trunk/main/rtp.c
Modified: trunk/channels/chan_skinny.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_skinny.c?view=diff&rev=114024&r1=114023&r2=114024
==============================================================================
--- trunk/channels/chan_skinny.c (original)
+++ trunk/channels/chan_skinny.c Thu Apr 10 08:45:45 2008
@@ -1824,7 +1824,7 @@
int res = 0;
if (!s) {
- ast_log(LOG_WARNING, "Asked to transmit to a non-existant session!\n");
+ ast_log(LOG_WARNING, "Asked to transmit to a non-existent session!\n");
return -1;
}
Modified: trunk/channels/chan_unistim.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_unistim.c?view=diff&rev=114024&r1=114023&r2=114024
==============================================================================
--- trunk/channels/chan_unistim.c (original)
+++ trunk/channels/chan_unistim.c Thu Apr 10 08:45:45 2008
@@ -1141,7 +1141,7 @@
ast_mutex_destroy(&s->lock);
ast_free(s);
} else
- ast_log(LOG_WARNING, "Trying to delete non-existant session %p?\n", s);
+ ast_log(LOG_WARNING, "Trying to delete non-existent session %p?\n", s);
ast_mutex_unlock(&sessionlock);
return;
}
@@ -3546,7 +3546,7 @@
}
if (pte->seq_server < seq) {
ast_log(LOG_NOTICE,
- "%s Error : ACK received for a non-existant packet : #0x%.4x\n",
+ "%s Error : ACK received for a non-existent packet : #0x%.4x\n",
tmpbuf, pte->seq_server);
ast_mutex_unlock(&pte->lock);
return;
@@ -3598,7 +3598,7 @@
}
if (pte->seq_server < seq) {
ast_log(LOG_NOTICE,
- "%s Error : received a request for a non-existant packet : #0x%.4x\n",
+ "%s Error : received a request for a non-existent packet : #0x%.4x\n",
tmpbuf, pte->seq_server);
return;
}
Modified: trunk/main/rtp.c
URL: http://svn.digium.com/view/asterisk/trunk/main/rtp.c?view=diff&rev=114024&r1=114023&r2=114024
==============================================================================
--- trunk/main/rtp.c (original)
+++ trunk/main/rtp.c Thu Apr 10 08:45:45 2008
@@ -1870,7 +1870,7 @@
ast_channel_unlock(c1);
return 0;
}
- /* Consider empty media as non-existant */
+ /* Consider empty media as non-existent */
if (audio_src_res == AST_RTP_TRY_NATIVE && !srcp->them.sin_addr.s_addr)
srcp = NULL;
if (srcp && (srcp->nat || ast_test_flag(srcp, FLAG_NAT_ACTIVE)))
More information about the asterisk-commits
mailing list