aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/app_rpt.c2
-rw-r--r--channels/chan_dahdi.c4
-rw-r--r--include/asterisk/smdi.h2
-rw-r--r--main/abstract_jb.c2
-rw-r--r--res/res_jabber.c2
-rw-r--r--res/res_smdi.c6
6 files changed, 9 insertions, 9 deletions
diff --git a/apps/app_rpt.c b/apps/app_rpt.c
index 2f4af8ca9..c86015338 100644
--- a/apps/app_rpt.c
+++ b/apps/app_rpt.c
@@ -5332,7 +5332,7 @@ struct ast_frame wf;
strcpy(mylink->linklist,tmp + 2);
time(&mylink->linklistreceived);
rpt_mutex_unlock(&myrpt->lock);
- if (debug > 6) ast_log(LOG_NOTICE,"@@@@ node %s recieved node list %s from node %s\n",
+ if (debug > 6) ast_log(LOG_NOTICE,"@@@@ node %s received node list %s from node %s\n",
myrpt->name,tmp,mylink->name);
return;
}
diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c
index c23127e8c..006a5bcaf 100644
--- a/channels/chan_dahdi.c
+++ b/channels/chan_dahdi.c
@@ -4422,7 +4422,7 @@ static struct ast_frame *dahdi_handle_event(struct ast_channel *ast)
break;
#endif
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)
@@ -6897,7 +6897,7 @@ static void *ss_thread(void *data)
else if (smdi_msg->type == 'N')
pbx_builtin_setvar_helper(chan, "_SMDI_VM_TYPE", "u");
- ast_log(LOG_DEBUG, "Recieved SMDI message on %s\n", chan->name);
+ ast_log(LOG_DEBUG, "Received SMDI message on %s\n", chan->name);
} else {
ast_log(LOG_WARNING, "SMDI enabled but no SMDI message present\n");
}
diff --git a/include/asterisk/smdi.h b/include/asterisk/smdi.h
index 6c79b2bc8..8f098abdd 100644
--- a/include/asterisk/smdi.h
+++ b/include/asterisk/smdi.h
@@ -80,7 +80,7 @@ struct ast_smdi_md_message {
*
* The ast_smdi_interface structure holds information on a serial port that
* should be monitored for SMDI activity. The structure contains a message
- * queue of messages that have been recieved on the interface.
+ * queue of messages that have been received on the interface.
*/
struct ast_smdi_interface;
diff --git a/main/abstract_jb.c b/main/abstract_jb.c
index c4f7aeefc..3afb47d41 100644
--- a/main/abstract_jb.c
+++ b/main/abstract_jb.c
@@ -324,7 +324,7 @@ int ast_jb_put(struct ast_channel *chan, struct ast_frame *f)
/* We consider an enabled jitterbuffer should receive frames with valid timing info. */
if (!ast_test_flag(f, AST_FRFLAG_HAS_TIMING_INFO) || f->len < 2 || f->ts < 0) {
- ast_log(LOG_WARNING, "%s recieved frame with invalid timing info: "
+ ast_log(LOG_WARNING, "%s received frame with invalid timing info: "
"has_timing_info=%d, len=%ld, ts=%ld, src=%s\n",
chan->name, ast_test_flag(f, AST_FRFLAG_HAS_TIMING_INFO), f->len, f->ts, f->src);
return -1;
diff --git a/res/res_jabber.c b/res/res_jabber.c
index 621c4ed69..67fda8e08 100644
--- a/res/res_jabber.c
+++ b/res/res_jabber.c
@@ -971,7 +971,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 447eefaa6..c264aee60 100644
--- a/res/res_smdi.c
+++ b/res/res_smdi.c
@@ -662,7 +662,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);
@@ -711,11 +711,11 @@ 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 {
- ast_log(LOG_ERROR, "Unknown SMDI message type recieved on %s (M%c).\n", iface->name, c);
+ ast_log(LOG_ERROR, "Unknown SMDI message type received on %s (M%c).\n", iface->name, c);
start = 0;
}
}