Ignore:
Timestamp:
May 9, 2019 4:00:00 AM (5 years ago)
Author:
nanang
Message:

Re #1298: Updated PJSUA-LIB to use PJ_ERROR or pjsua_perror when applicable.

File:
1 edited

Legend:

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

    r5978 r5979  
    46674667                                              100, NULL, NULL, &response); 
    46684668            if (status != PJ_SUCCESS) { 
    4669                 PJ_LOG(3, (THIS_FILE, "Failed to create initial answer"));  
     4669                PJ_PERROR(3, (THIS_FILE, status, 
     4670                              "Failed to create initial answer")); 
    46704671                goto on_return; 
    46714672            } 
     
    46734674            status = pjsip_inv_send_msg(inv, response); 
    46744675            if (status != PJ_SUCCESS) { 
    4675                 PJ_LOG(3, (THIS_FILE, "Failed to send initial answer"));  
     4676                PJ_PERROR(3, (THIS_FILE, status, 
     4677                              "Failed to send initial answer"));  
    46764678                goto on_return; 
    46774679            } 
Note: See TracChangeset for help on using the changeset viewer.