]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Typos: recieved => received
authorTzafrir Cohen <tzafrir.cohen@xorcom.com>
Mon, 20 Dec 2010 09:13:18 +0000 (09:13 +0000)
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>
Mon, 20 Dec 2010 09:13:18 +0000 (09:13 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@299002 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_rpt.c
channels/chan_dahdi.c
include/asterisk/smdi.h
main/abstract_jb.c
res/res_jabber.c
res/res_smdi.c

index 2f4af8ca90e0518d09b389cbc722c49379ea38b7..c86015338840c4532836417ab4ad90d74581d9f8 100644 (file)
@@ -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;
        }
index c23127e8c56dbc6f40b8f502cc5fa49cdcd87dcf..006a5bcafad0d9d759f68fe2e23ad3e2c5211238 100644 (file)
@@ -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");
                        }
index 6c79b2bc8b4130e94ea0b293434e39311a24e5a2..8f098abdd5c9e1161263b8ecfc5bc91c4d302c71 100644 (file)
@@ -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;
 
index c4f7aeefcd1bdea45eb2b99982ae7dfa4bcaf1d0..3afb47d41599873aca842c49526bfee32a27c788 100644 (file)
@@ -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;
index 621c4ed69efc28faac029f1b3030ddc5b3e6f9ed..67fda8e08886e62965943bfe50c88c2b91d9b645 100644 (file)
@@ -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) {
index 447eefaa61167f1b8630da754840e6bfc81a94e7..c264aee60a9aecd1a53b16fb381517a3b2a3ccec 100644 (file)
@@ -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;
                }
        }