Index: pbx/pbx_dundi.c =================================================================== --- pbx/pbx_dundi.c (revision 205096) +++ pbx/pbx_dundi.c (working copy) @@ -1885,7 +1885,7 @@ break; default: /* Send unknown command if we don't know it, with final flag IFF it's the - first command in the dialog and only if we haven't recieved final notification */ + first command in the dialog and only if we haven't received final notification */ if (!final) { dundi_ie_append_byte(ied, DUNDI_IE_UNKNOWN, cmd); dundi_send(trans, DUNDI_COMMAND_UNKNOWN, 0, !hdr->oseqno, ied); Index: apps/app_rpt.c =================================================================== --- apps/app_rpt.c (revision 205096) +++ apps/app_rpt.c (working copy) @@ -6712,7 +6712,7 @@ 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: addons/chan_mobile.c =================================================================== --- addons/chan_mobile.c (revision 205096) +++ addons/chan_mobile.c (working copy) @@ -146,7 +146,7 @@ unsigned int needcallerid:1; /*!< we need callerid */ unsigned int needchup:1; /*!< we need to send a chup */ unsigned int needring:1; /*!< we need to send a RING */ - unsigned int answered:1; /*!< we sent/recieved an answer */ + unsigned int answered:1; /*!< we sent/received an answer */ unsigned int connected:1; /*!< do we have an rfcomm connection to a device */ AST_LIST_ENTRY(mbl_pvt) entry; @@ -2803,9 +2803,9 @@ msg_queue_free_and_pop(pvt); } else if (entry) { - ast_debug(1, "[%s] recieved unexpected AT message 'BRSF' when expecting %s, ignoring\n", pvt->id, at_msg2str(entry->expected)); + ast_debug(1, "[%s] received unexpected AT message 'BRSF' when expecting %s, ignoring\n", pvt->id, at_msg2str(entry->expected)); } else { - ast_debug(1, "[%s] recieved unexpected AT message 'BRSF'\n", pvt->id); + ast_debug(1, "[%s] received unexpected AT message 'BRSF'\n", pvt->id); } return 0; @@ -2845,9 +2845,9 @@ } msg_queue_free_and_pop(pvt); } else if (entry) { - ast_debug(1, "[%s] recieved unexpected AT message 'CIND' when expecting %s, ignoring\n", pvt->id, at_msg2str(entry->expected)); + ast_debug(1, "[%s] received unexpected AT message 'CIND' when expecting %s, ignoring\n", pvt->id, at_msg2str(entry->expected)); } else { - ast_debug(1, "[%s] recieved unexpected AT message 'CIND'\n", pvt->id); + ast_debug(1, "[%s] received unexpected AT message 'CIND'\n", pvt->id); } return 0; @@ -3000,14 +3000,14 @@ break; case AT_UNKNOWN: default: - ast_debug(1, "[%s] recieved OK for unhandled request: %s\n", pvt->id, at_msg2str(entry->response_to)); + ast_debug(1, "[%s] received OK for unhandled request: %s\n", pvt->id, at_msg2str(entry->response_to)); break; } msg_queue_free_and_pop(pvt); } else if (entry) { - ast_debug(1, "[%s] recieved AT message 'OK' when expecting %s, ignoring\n", pvt->id, at_msg2str(entry->expected)); + ast_debug(1, "[%s] received AT message 'OK' when expecting %s, ignoring\n", pvt->id, at_msg2str(entry->expected)); } else { - ast_debug(1, "[%s] recieved unexpected AT message 'OK'\n", pvt->id); + ast_debug(1, "[%s] received unexpected AT message 'OK'\n", pvt->id); } return 0; @@ -3096,14 +3096,14 @@ break; case AT_UNKNOWN: default: - ast_debug(1, "[%s] recieved ERROR for unhandled request: %s\n", pvt->id, at_msg2str(entry->response_to)); + ast_debug(1, "[%s] received ERROR for unhandled request: %s\n", pvt->id, at_msg2str(entry->response_to)); break; } msg_queue_free_and_pop(pvt); } else if (entry) { - ast_debug(1, "[%s] recieved AT message 'ERROR' when expecting %s, ignoring\n", pvt->id, at_msg2str(entry->expected)); + ast_debug(1, "[%s] received AT message 'ERROR' when expecting %s, ignoring\n", pvt->id, at_msg2str(entry->expected)); } else { - ast_debug(1, "[%s] recieved unexpected AT message 'ERROR'\n", pvt->id); + ast_debug(1, "[%s] received unexpected AT message 'ERROR'\n", pvt->id); } return 0; Index: res/res_smdi.c =================================================================== --- res/res_smdi.c (revision 205096) +++ res/res_smdi.c (working copy) @@ -806,7 +806,7 @@ 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; } }