summaryrefslogtreecommitdiff
path: root/pjsip/src
diff options
context:
space:
mode:
authorNanang Izzuddin <nanang@teluu.com>2014-01-31 08:52:09 +0000
committerNanang Izzuddin <nanang@teluu.com>2014-01-31 08:52:09 +0000
commitb36d2739227522586612ee5ab3f7843795fd07bc (patch)
tree09c79f7db33c45a136cf673283cee4e456d91ba8 /pjsip/src
parent263ef89954cff2ab1e15e5aac643c0f69c520afd (diff)
Misc (re #1630): Fixed some more typos in the codes.
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@4724 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip/src')
-rw-r--r--pjsip/src/pjsua-lib/pjsua_call.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pjsip/src/pjsua-lib/pjsua_call.c b/pjsip/src/pjsua-lib/pjsua_call.c
index ff64e1e4..a363b7ff 100644
--- a/pjsip/src/pjsua-lib/pjsua_call.c
+++ b/pjsip/src/pjsua-lib/pjsua_call.c
@@ -4031,7 +4031,7 @@ static void xfer_client_on_evsub_state( pjsip_evsub *sub, pjsip_event *event)
/* Check if subscription is suppressed */
if (refer_sub && pj_stricmp2(&refer_sub->hvalue, "false")==0) {
/* Since no subscription is desired, assume that call has been
- * transfered successfully.
+ * transferred successfully.
*/
if (call && pjsua_var.ua_cfg.cb.on_call_transfer_status) {
const pj_str_t ACCEPTED = { "Accepted", 8 };
@@ -4202,7 +4202,7 @@ on_return:
/*
* Follow transfer (REFER) request.
*/
-static void on_call_transfered( pjsip_inv_session *inv,
+static void on_call_transferred( pjsip_inv_session *inv,
pjsip_rx_data *rdata )
{
pj_status_t status;
@@ -4280,7 +4280,7 @@ static void on_call_transfered( pjsip_inv_session *inv,
goto on_return;
}
- PJ_LOG(3,(THIS_FILE, "Call to %.*s is being transfered to %.*s",
+ PJ_LOG(3,(THIS_FILE, "Call to %.*s is being transferred to %.*s",
(int)inv->dlg->remote.info_str.slen,
inv->dlg->remote.info_str.ptr,
(int)refer_to->hvalue.slen,
@@ -4486,7 +4486,7 @@ static void pjsua_call_on_tsx_state_changed(pjsip_inv_session *inv,
/*
* Incoming REFER request.
*/
- on_call_transfered(call->inv, e->body.tsx_state.src.rdata);
+ on_call_transferred(call->inv, e->body.tsx_state.src.rdata);
}
else if (tsx->role==PJSIP_ROLE_UAS &&