Ignore:
Timestamp:
May 2, 2007 11:29:37 AM (17 years ago)
Author:
bennylp
Message:

PJSUA-LIB was ported to Symbian and added simple Symbian app. Testing follows

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip-ua/sip_inv.c

    r982 r1242  
    170170{ 
    171171    if (cause_code > inv->cause) { 
    172         inv->cause = cause_code; 
     172        inv->cause = (pjsip_status_code) cause_code; 
    173173        if (cause_text) 
    174174            pj_strdup(inv->pool, &inv->cause_text, cause_text); 
     
    462462    inv->options = options; 
    463463    inv->notify = PJ_TRUE; 
    464     inv->cause = 0; 
     464    inv->cause = (pjsip_status_code) 0; 
    465465 
    466466    /* Object name will use the same dialog pointer. */ 
     
    884884    inv->options = options; 
    885885    inv->notify = PJ_TRUE; 
    886     inv->cause = 0; 
     886    inv->cause = (pjsip_status_code) 0; 
    887887 
    888888    /* Object name will use the same dialog pointer. */ 
Note: See TracChangeset for help on using the changeset viewer.