]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Several components: fixing Typos in comments and code, "avaliable" instead of "available"
authorRusty Newton <rnewton@digium.com>
Tue, 17 Dec 2013 23:32:35 +0000 (23:32 +0000)
committerRusty Newton <rnewton@digium.com>
Tue, 17 Dec 2013 23:32:35 +0000 (23:32 +0000)
(issue ASTERISK-23021)
(closes issue ASTERISK-23021)
Reported by: Jeremy LainĂ©
Tested by: Rusty Newton
Patches:
   available.patch uploaded by Jeremy LainĂ© (license 6561)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@404044 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_chanspy.c
apps/app_mixmonitor.c
channels/chan_iax2.c
include/asterisk/test.h
main/channel.c

index bd207437f64061f9050f1ee6547ad6a42ce6b6d3..a86026ac186dadec59d972e0a0e11628e4b0fdd8 100644 (file)
@@ -363,7 +363,7 @@ enum {
        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. */
index f13edc6ed836280639ec2463cb74ed9f6f8167ae..065aae6d948a2bc50eebd1683835fbe1c9612dd0 100644 (file)
@@ -590,7 +590,7 @@ static int stop_mixmonitor_exec(struct ast_channel *chan, const char *data)
 
                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);
 
index 5532bfe8d24c7135a2eafe7b535973f15c3a3c7d..7986cbe9ce90355947572954e947bb462679327d 100644 (file)
@@ -2723,7 +2723,7 @@ static int create_callno_pools(void)
  * \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)
index 27ec3cfa8d6105dd1f3001def8cbe2550449579c..606c332763495a655b1533ca751e42665f07e700 100644 (file)
@@ -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
index 16c7e76376f175374766da3724781738aae63386..28f0741efe0417834748cbd7d16c38fc229306ea 100644 (file)
@@ -5382,7 +5382,7 @@ struct ast_channel *ast_call_forward(struct ast_channel *caller, struct ast_chan
                        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);
        }