aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordbrooks <dbrooks@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-27 20:28:28 +0000
committerdbrooks <dbrooks@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-27 20:28:28 +0000
commit241bc934ebd8fd306125821d11a59b2b4cb6e7a3 (patch)
treebf94564f4150bc5ef6feccb3045e4dff1aafb421
parentb8e14facbc2fa758f828acf66da25e428b42de6e (diff)
Merged revisions 209098 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r209098 | dbrooks | 2009-07-27 11:33:50 -0500 (Mon, 27 Jul 2009) | 6 lines Fixing typos. Replaces "recieved" with "received" and "initilize" with "initialize" (closes issue #15571) Reported by: alecdavis ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@209233 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--channels/chan_dahdi.c4
-rw-r--r--channels/chan_vpb.cc2
-rw-r--r--include/asterisk/module.h2
-rw-r--r--main/features.c2
-rw-r--r--main/loader.c2
-rw-r--r--res/res_agi.c2
-rw-r--r--res/res_jabber.c4
-rw-r--r--res/res_smdi.c4
8 files changed, 11 insertions, 11 deletions
diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c
index f889a77ab..635a2acd6 100644
--- a/channels/chan_dahdi.c
+++ b/channels/chan_dahdi.c
@@ -4737,7 +4737,7 @@ static struct ast_frame *dahdi_handle_event(struct ast_channel *ast)
p->echocanon = 0;
break;
case DAHDI_EVENT_BITSCHANGED:
- ast_log(LOG_WARNING, "Recieved bits changed on %s signalling?\n", sig2str(p->sig));
+ ast_log(LOG_WARNING, "Received bits changed on %s signalling?\n", sig2str(p->sig));
case DAHDI_EVENT_PULSE_START:
/* Stop tone if there's a pulse start and the PBX isn't started */
if (!ast->pbx)
@@ -7210,7 +7210,7 @@ static void *ss_thread(void *data)
else if (smdi_msg->type == 'N')
pbx_builtin_setvar_helper(chan, "_SMDI_VM_TYPE", "u");
- ast_debug(1, "Recieved SMDI message on %s\n", chan->name);
+ ast_debug(1, "Received SMDI message on %s\n", chan->name);
} else {
ast_log(LOG_WARNING, "SMDI enabled but no SMDI message present\n");
}
diff --git a/channels/chan_vpb.cc b/channels/chan_vpb.cc
index 789682e3a..7b076de17 100644
--- a/channels/chan_vpb.cc
+++ b/channels/chan_vpb.cc
@@ -1509,7 +1509,7 @@ static struct vpb_pvt *mkif(int board, int channel, int mode, int gains, float t
tmp->callgroup = callgroup;
tmp->pickupgroup = pickupgroup;
- /* Initilize dtmf caller ID position variable */
+ /* Initialize dtmf caller ID position variable */
tmp->dtmf_caller_pos = 0;
ast_copy_string(tmp->language, language, sizeof(tmp->language));
diff --git a/include/asterisk/module.h b/include/asterisk/module.h
index b5c96f8a1..d0d084326 100644
--- a/include/asterisk/module.h
+++ b/include/asterisk/module.h
@@ -70,7 +70,7 @@ enum ast_module_load_result {
* \param resource_name The name of the module to load.
*
* This function is run by the PBX to load the modules. It performs
- * all loading and initilization tasks. Basically, to load a module, just
+ * all loading and initialization tasks. Basically, to load a module, just
* give it the name of the module and it will do the rest.
*
* \return See possible enum values for ast_module_load_result.
diff --git a/main/features.c b/main/features.c
index e31b2526a..191519f73 100644
--- a/main/features.c
+++ b/main/features.c
@@ -1233,7 +1233,7 @@ static int builtin_blindtransfer(struct ast_channel *chan, struct ast_channel *p
if (!transferer->cdr) { /* this code should never get called (in a perfect world) */
transferer->cdr=ast_cdr_alloc();
if (transferer->cdr) {
- ast_cdr_init(transferer->cdr, transferer); /* initilize our channel's cdr */
+ ast_cdr_init(transferer->cdr, transferer); /* initialize our channel's cdr */
ast_cdr_start(transferer->cdr);
}
}
diff --git a/main/loader.c b/main/loader.c
index ba6af732d..2730eb950 100644
--- a/main/loader.c
+++ b/main/loader.c
@@ -756,7 +756,7 @@ static enum ast_module_load_result start_resource(struct ast_module *mod)
*
* If the ast_heap is provided (not NULL) the module is found and added to the
* heap without running the module's load() function. By doing this, modules
- * added to the resource_heap can be initilized later in order by priority.
+ * added to the resource_heap can be initialized later in order by priority.
*
* If the ast_heap is not provided, the module's load function will be executed
* immediately */
diff --git a/res/res_agi.c b/res/res_agi.c
index 0631694b3..d04e38a25 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -2223,7 +2223,7 @@ static char usage_sayphonetic[] =
static char usage_getdata[] =
" Usage: GET DATA <file to be streamed> [timeout] [max digits]\n"
-" Stream the given file, and recieve DTMF data. Returns the digits received\n"
+" Stream the given file, and receive DTMF data. Returns the digits received\n"
"from the channel at the other end.\n";
static char usage_setcontext[] =
diff --git a/res/res_jabber.c b/res/res_jabber.c
index 7ff899240..ccb425b92 100644
--- a/res/res_jabber.c
+++ b/res/res_jabber.c
@@ -462,7 +462,7 @@ static struct ast_custom_function jabberstatus_function = {
/*!
* \brief Dial plan function to send a message.
* \param chan ast_channel
- * \param data Data is sender|reciever|message.
+ * \param data Data is sender|receiver|message.
* \return 0 on success,-1 on error.
*/
static int aji_send_exec(struct ast_channel *chan, void *data)
@@ -1339,7 +1339,7 @@ static int aji_dinfo_handler(void *data, ikspak *pak)
resource = aji_find_resource(buddy, pak->from->resource);
if (pak->subtype == IKS_TYPE_ERROR) {
- ast_log(LOG_WARNING, "Recieved error from a client, turn on jabber debug!\n");
+ ast_log(LOG_WARNING, "Received error from a client, turn on jabber debug!\n");
return IKS_FILTER_EAT;
}
if (pak->subtype == IKS_TYPE_RESULT) {
diff --git a/res/res_smdi.c b/res/res_smdi.c
index b631b312c..07303eeef 100644
--- a/res/res_smdi.c
+++ b/res/res_smdi.c
@@ -658,7 +658,7 @@ static void *smdi_read(void *iface_p)
/* add the message to the message queue */
md_msg->timestamp = ast_tvnow();
ast_smdi_md_message_push(iface, md_msg);
- ast_log(LOG_DEBUG, "Recieved SMDI MD message on %s\n", iface->name);
+ ast_log(LOG_DEBUG, "Received SMDI MD message on %s\n", iface->name);
ASTOBJ_UNREF(md_msg, ast_smdi_md_message_destroy);
@@ -707,7 +707,7 @@ static void *smdi_read(void *iface_p)
/* add the message to the message queue */
mwi_msg->timestamp = ast_tvnow();
ast_smdi_mwi_message_push(iface, mwi_msg);
- ast_log(LOG_DEBUG, "Recieved SMDI MWI message on %s\n", iface->name);
+ ast_log(LOG_DEBUG, "Received SMDI MWI message on %s\n", iface->name);
ASTOBJ_UNREF(mwi_msg, ast_smdi_mwi_message_destroy);
} else {