Ignore:
Timestamp:
Sep 23, 2013 5:03:24 AM (11 years ago)
Author:
bennylp
Message:

More re #1519: fixed some build errors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/pjsua2/pjsip/src/pjsua2/endpoint.cpp

    r4597 r4598  
    132132    Endpoint &ep = Endpoint::instance(); 
    133133 
    134     if (!ep.epCallback || !res) 
     134    if (!ep.epCallback) 
    135135        return; 
    136136 
     
    169169    pj_status_t status; 
    170170 
    171     ua_cfg = prmEpConfig.uaConfig.toPjsip(); 
    172     log_cfg = prmEpConfig.logConfig.toPjsip(); 
    173     med_cfg = prmEpConfig.medConfig.toPjsip(); 
     171    ua_cfg = prmEpConfig.uaConfig.toPj(); 
     172    log_cfg = prmEpConfig.logConfig.toPj(); 
     173    med_cfg = prmEpConfig.medConfig.toPj(); 
    174174 
    175175    /* Setup log callback */ 
     
    372372    pj_status_t status; 
    373373 
    374     tcfg = cfg.toPjsip(); 
     374    tcfg = cfg.toPj(); 
    375375    status = pjsua_transport_create(type, &tcfg, &tid); 
    376376    PJSUA2_CHECK_RAISE_ERROR("Endpoint::transportCreate()", status); 
Note: See TracChangeset for help on using the changeset viewer.