Changeset 3875 for pjproject/trunk


Ignore:
Timestamp:
Oct 28, 2011 5:09:53 AM (12 years ago)
Author:
bennylp
Message:

Misc (re #1393): write log if adding pjsua buddy fails

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app.c

    r3864 r3875  
    56745674    for (i=0; i<app_config.buddy_cnt; ++i) { 
    56755675        status = pjsua_buddy_add(&app_config.buddy_cfg[i], NULL); 
    5676         if (status != PJ_SUCCESS) 
     5676        if (status != PJ_SUCCESS) { 
     5677            PJ_PERROR(1,(THIS_FILE, status, "Error adding buddy")); 
    56775678            goto on_error; 
     5679        } 
    56785680    } 
    56795681 
Note: See TracChangeset for help on using the changeset viewer.