aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authordbrooks <dbrooks@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-27 20:33:56 +0000
committerdbrooks <dbrooks@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-27 20:33:56 +0000
commit553077653c1e8df78995d40b08ebd16d43f2449f (patch)
tree3747042cec606fc868cf21e506d724aef85b5b84 /res
parent4e63bb1181981760a246e657f93a03ee0bc5987f (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.2@209234 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 1018bf4eb..eec704961 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -217,7 +217,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<parameter name="maxdigits" />
</syntax>
<description>
- <para>Stream the given <replaceable>file</replaceable>, and recieve DTMF data.</para>
+ <para>Stream the given <replaceable>file</replaceable>, and receive DTMF data.</para>
<para>Returns the digits received from the channel at the other end.</para>
</description>
</agi>
diff --git a/res/res_jabber.c b/res/res_jabber.c
index 6a3ac5a57..fbcde691f 100644
--- a/res/res_jabber.c
+++ b/res/res_jabber.c
@@ -542,7 +542,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)
@@ -1419,7 +1419,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 cb1644e4b..38ddfa92a 100644
--- a/res/res_smdi.c
+++ b/res/res_smdi.c
@@ -659,7 +659,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);
@@ -708,7 +708,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 {