[asterisk-commits] newtonr: branch 1.8 r404044 - in /branches/1.8: apps/ channels/ include/aster...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Dec 17 17:32:38 CST 2013


Author: newtonr
Date: Tue Dec 17 17:32:35 2013
New Revision: 404044

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=404044
Log:
Several components: fixing Typos in comments and code, "avaliable" instead of "available"

(issue ASTERISK-23021)
(closes issue ASTERISK-23021)
Reported by: Jeremy Lainé
Tested by: Rusty Newton

Modified:
    branches/1.8/apps/app_chanspy.c
    branches/1.8/apps/app_mixmonitor.c
    branches/1.8/channels/chan_iax2.c
    branches/1.8/include/asterisk/test.h
    branches/1.8/main/channel.c

Modified: branches/1.8/apps/app_chanspy.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/apps/app_chanspy.c?view=diff&rev=404044&r1=404043&r2=404044
==============================================================================
--- branches/1.8/apps/app_chanspy.c (original)
+++ branches/1.8/apps/app_chanspy.c Tue Dec 17 17:32:35 2013
@@ -363,7 +363,7 @@
 	OPTION_NAME              = (1 << 12),   /* Say the name of the person on whom we will spy */
 	OPTION_DTMF_SWITCH_MODES = (1 << 13),   /* Allow numeric DTMF to switch between chanspy modes */
 	OPTION_DTMF_EXIT         = (1 << 14),	/* Set DTMF to exit, added for DAHDIScan integration */
-	OPTION_DTMF_CYCLE        = (1 << 15),	/* Custom DTMF for cycling next avaliable channel, (default is '*') */
+	OPTION_DTMF_CYCLE        = (1 << 15),	/* Custom DTMF for cycling next available channel, (default is '*') */
 	OPTION_DAHDI_SCAN        = (1 << 16),	/* Scan groups in DAHDIScan mode */
 	OPTION_STOP              = (1 << 17),
 	OPTION_EXITONHANGUP      = (1 << 18),   /* Hang up when the spied-on channel hangs up. */

Modified: branches/1.8/apps/app_mixmonitor.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/apps/app_mixmonitor.c?view=diff&rev=404044&r1=404043&r2=404044
==============================================================================
--- branches/1.8/apps/app_mixmonitor.c (original)
+++ branches/1.8/apps/app_mixmonitor.c Tue Dec 17 17:32:35 2013
@@ -590,7 +590,7 @@
 
 		ast_mutex_lock(&mixmonitor_ds->lock);
 
-		/* closing the filestream here guarantees the file is avaliable to the dialplan
+		/* closing the filestream here guarantees the file is available to the dialplan
 	 	 * after calling StopMixMonitor */
 		mixmonitor_ds_close_fs(mixmonitor_ds);
 

Modified: branches/1.8/channels/chan_iax2.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/channels/chan_iax2.c?view=diff&rev=404044&r1=404043&r2=404044
==============================================================================
--- branches/1.8/channels/chan_iax2.c (original)
+++ branches/1.8/channels/chan_iax2.c Tue Dec 17 17:32:35 2013
@@ -2723,7 +2723,7 @@
  * \brief Schedules delayed removal of iax2_pvt call number data
  *
  * \note After MIN_REUSE_TIME has passed for a destroyed iax2_pvt, the callno is
- * avaliable again, and the address from the previous connection must be decremented
+ * available again, and the address from the previous connection must be decremented
  * from the peercnts table.  This function schedules these operations to take place.
  */
 static void sched_delay_remove(struct sockaddr_in *sin, struct callno_entry *callno_entry)

Modified: branches/1.8/include/asterisk/test.h
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/include/asterisk/test.h?view=diff&rev=404044&r1=404043&r2=404044
==============================================================================
--- branches/1.8/include/asterisk/test.h (original)
+++ branches/1.8/include/asterisk/test.h Tue Dec 17 17:32:35 2013
@@ -45,7 +45,7 @@
 
    Create a callback function for the test using the AST_TEST_DEFINE macro.
 
-   Each defined test has three arguments avaliable to it's test code.
+   Each defined test has three arguments available to it's test code.
        \param struct ast_test_info *info
        \param enum ast_test_command cmd
        \param struct ast_test *test

Modified: branches/1.8/main/channel.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/main/channel.c?view=diff&rev=404044&r1=404043&r2=404044
==============================================================================
--- branches/1.8/main/channel.c (original)
+++ branches/1.8/main/channel.c Tue Dec 17 17:32:35 2013
@@ -5382,7 +5382,7 @@
 			ast_cdr_setaccount(new_chan, oh->account);
 			ast_channel_unlock(new_chan);
 		}
-	} else if (caller) { /* no outgoing helper so use caller if avaliable */
+	} else if (caller) { /* no outgoing helper so use caller if available */
 		call_forward_inherit(new_chan, caller, orig);
 	}
 




More information about the asterisk-commits mailing list