[asterisk-commits] file: branch 1.6.0 r114025 - in /branches/1.6.0: ./ channels/ main/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Apr 10 08:46:33 CDT 2008


Author: file
Date: Thu Apr 10 08:46:33 2008
New Revision: 114025

URL: http://svn.digium.com/view/asterisk?view=rev&rev=114025
Log:
Merged revisions 114024 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
r114024 | file | 2008-04-10 10:45:45 -0300 (Thu, 10 Apr 2008) | 4 lines

Fix spelling of existent in a few places.
(closes issue #12409)
Reported by: candlerb

........

Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/channels/chan_skinny.c
    branches/1.6.0/channels/chan_unistim.c
    branches/1.6.0/main/rtp.c

Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.0/channels/chan_skinny.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/channels/chan_skinny.c?view=diff&rev=114025&r1=114024&r2=114025
==============================================================================
--- branches/1.6.0/channels/chan_skinny.c (original)
+++ branches/1.6.0/channels/chan_skinny.c Thu Apr 10 08:46:33 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: branches/1.6.0/channels/chan_unistim.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/channels/chan_unistim.c?view=diff&rev=114025&r1=114024&r2=114025
==============================================================================
--- branches/1.6.0/channels/chan_unistim.c (original)
+++ branches/1.6.0/channels/chan_unistim.c Thu Apr 10 08:46:33 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: branches/1.6.0/main/rtp.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/main/rtp.c?view=diff&rev=114025&r1=114024&r2=114025
==============================================================================
--- branches/1.6.0/main/rtp.c (original)
+++ branches/1.6.0/main/rtp.c Thu Apr 10 08:46:33 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