Ignore:
Timestamp:
Jan 31, 2014 8:52:09 AM (10 years ago)
Author:
nanang
Message:

Misc (re #1630): Fixed some more typos in the codes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c

    r4714 r4724  
    40324032        if (refer_sub && pj_stricmp2(&refer_sub->hvalue, "false")==0) { 
    40334033            /* Since no subscription is desired, assume that call has been 
    4034              * transfered successfully. 
     4034             * transferred successfully. 
    40354035             */ 
    40364036            if (call && pjsua_var.ua_cfg.cb.on_call_transfer_status) { 
     
    42034203 * Follow transfer (REFER) request. 
    42044204 */ 
    4205 static void on_call_transfered( pjsip_inv_session *inv, 
     4205static void on_call_transferred( pjsip_inv_session *inv, 
    42064206                                pjsip_rx_data *rdata ) 
    42074207{ 
     
    42814281    } 
    42824282 
    4283     PJ_LOG(3,(THIS_FILE, "Call to %.*s is being transfered to %.*s", 
     4283    PJ_LOG(3,(THIS_FILE, "Call to %.*s is being transferred to %.*s", 
    42844284              (int)inv->dlg->remote.info_str.slen, 
    42854285              inv->dlg->remote.info_str.ptr, 
     
    44874487         * Incoming REFER request. 
    44884488         */ 
    4489         on_call_transfered(call->inv, e->body.tsx_state.src.rdata); 
     4489        on_call_transferred(call->inv, e->body.tsx_state.src.rdata); 
    44904490 
    44914491    } 
Note: See TracChangeset for help on using the changeset viewer.