aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authordbrooks <dbrooks@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-27 20:23:33 +0000
committerdbrooks <dbrooks@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-27 20:23:33 +0000
commit683b9a71d1ded316474aa6a4c07b8b1c73d74eea (patch)
tree326505f83c0ffff3e5ccaf22765b81e6296229b2 /res
parente2995898602c0cfa4f10712834ba7ec6c1bfc546 (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.0@209221 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_agi.c2
-rw-r--r--res/res_jabber.c4
-rw-r--r--res/res_smdi.c4
3 files changed, 5 insertions, 5 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index 302a5f5ad..c036cc5be 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -2246,7 +2246,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 5751f42c3..124b15ab6 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 78a82e2da..e29570b96 100644
--- a/res/res_smdi.c
+++ b/res/res_smdi.c
@@ -601,7 +601,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);
@@ -650,7 +650,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 {