general: Fix various typos.

ASTERISK-30089 #close

Change-Id: I1f5db911fd05a3a211c522c13e990fa1d0e62275
This commit is contained in:
Naveen Albert
2022-06-01 00:49:12 +00:00
committed by George Joseph
parent b7599a380d
commit 7448443f21
16 changed files with 30 additions and 30 deletions

View File

@@ -238,8 +238,8 @@
<para>DAHDI allows several modifiers to be specified as part of the resource.</para>
<para>The general syntax is :</para>
<para><literal>Dial(DAHDI/pseudo[/extension])</literal></para>
<para><literal>Dial(DAHDI/&lt;channel#&gt;[c|r&lt;cadance#&gt;|d][/extension])</literal></para>
<para><literal>Dial(DAHDI/(g|G|r|R)&lt;group#(0-63)&gt;[c|r&lt;cadance#&gt;|d][/extension])</literal></para>
<para><literal>Dial(DAHDI/&lt;channel#&gt;[c|r&lt;cadence#&gt;|d][/extension])</literal></para>
<para><literal>Dial(DAHDI/(g|G|r|R)&lt;group#(0-63)&gt;[c|r&lt;cadence#&gt;|d][/extension])</literal></para>
<para>The following modifiers may be used before the channel number:</para>
<enumlist>
<enum name="g">

View File

@@ -75,7 +75,7 @@ enum iax_frame_subclass {
IAX_COMMAND_VNAK = 18,
/*! Request status of a dialplan entry */
IAX_COMMAND_DPREQ = 19,
/*! Request status of a dialplan entry */
/*! Status reply of a dialplan entry status request */
IAX_COMMAND_DPREP = 20,
/*! Request a dial on channel brought up TBD */
IAX_COMMAND_DIAL = 21,

View File

@@ -2235,12 +2235,12 @@ static void *__analog_ss_thread(void *data)
} else if (!strcmp(exten, pickupexten)) {
/* Scan all channels and see if there are any
* ringing channels that have call groups
* that equal this channels pickup group
* that equal this channel's pickup group
*/
if (idx == ANALOG_SUB_REAL) {
/* Switch us from Third call to Call Wait */
if (p->subs[ANALOG_SUB_THREEWAY].owner) {
/* If you make a threeway call and the *8# a call, it should actually
/* If you make a threeway call and then *8# a call, it should actually
look like a callwait */
analog_alloc_sub(p, ANALOG_SUB_CALLWAIT);
analog_swap_subs(p, ANALOG_SUB_CALLWAIT, ANALOG_SUB_THREEWAY);
@@ -2808,7 +2808,7 @@ static struct ast_frame *__analog_handle_event(struct analog_pvt *p, struct ast_
switch (res) {
case ANALOG_EVENT_EC_DISABLED:
ast_verb(3, "Channel %d echo canceler disabled due to CED detection\n", p->channel);
ast_verb(3, "Channel %d echo canceller disabled due to CED detection\n", p->channel);
analog_set_echocanceller(p, 0);
break;
#ifdef HAVE_DAHDI_ECHOCANCEL_FAX_MODE
@@ -2819,10 +2819,10 @@ static struct ast_frame *__analog_handle_event(struct analog_pvt *p, struct ast_
ast_verb(3, "Channel %d detected a CED tone from the network.\n", p->channel);
break;
case ANALOG_EVENT_EC_NLP_DISABLED:
ast_verb(3, "Channel %d echo canceler disabled its NLP.\n", p->channel);
ast_verb(3, "Channel %d echo canceller disabled its NLP.\n", p->channel);
break;
case ANALOG_EVENT_EC_NLP_ENABLED:
ast_verb(3, "Channel %d echo canceler enabled its NLP.\n", p->channel);
ast_verb(3, "Channel %d echo canceller enabled its NLP.\n", p->channel);
break;
#endif
case ANALOG_EVENT_PULSE_START:
@@ -2907,14 +2907,14 @@ static struct ast_frame *__analog_handle_event(struct analog_pvt *p, struct ast_
analog_lock_sub_owner(p, ANALOG_SUB_CALLWAIT);
if (!p->subs[ANALOG_SUB_CALLWAIT].owner) {
/*
* The call waiting call dissappeared.
* The call waiting call disappeared.
* This is now a normal hangup.
*/
analog_set_echocanceller(p, 0);
return NULL;
}
/* There's a call waiting call, so ring the phone, but make it unowned in the mean time */
/* There's a call waiting call, so ring the phone, but make it unowned in the meantime */
analog_swap_subs(p, ANALOG_SUB_CALLWAIT, ANALOG_SUB_REAL);
ast_verb(3, "Channel %d still has (callwait) call, ringing phone\n", p->channel);
analog_unalloc_sub(p, ANALOG_SUB_CALLWAIT);

View File

@@ -266,7 +266,7 @@ struct analog_pvt {
enum analog_sigtype sig;
/* To contain the private structure passed into the channel callbacks */
void *chan_pvt;
/* All members after this are giong to be transient, and most will probably change */
/* All members after this are going to be transient, and most will probably change */
struct ast_channel *owner; /*!< Our current active owner (if applicable) */
struct analog_subchannel subs[3]; /*!< Sub-channels */