Changeset 2209


Ignore:
Timestamp:
Aug 13, 2008 1:52:19 PM (16 years ago)
Author:
bennylp
Message:

Fixed bug in --auto-rec option handling in pjsua

File:
1 edited

Legend:

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

    r2204 r2209  
    22452245            pjsua_conf_connect(call_info.conf_slot, call_info.conf_slot); 
    22462246            connect_sound = PJ_FALSE; 
    2247  
    2248             /* Automatically record conversation, if desired */ 
    2249             if (app_config.auto_rec && app_config.rec_port != PJSUA_INVALID_ID) { 
    2250                 pjsua_conf_connect(call_info.conf_slot, app_config.rec_port); 
    2251             } 
     2247        } 
     2248 
     2249        /* Automatically record conversation, if desired */ 
     2250        if (app_config.auto_rec && app_config.rec_port != PJSUA_INVALID_ID) { 
     2251            pjsua_conf_connect(call_info.conf_slot, app_config.rec_port); 
    22522252        } 
    22532253 
Note: See TracChangeset for help on using the changeset viewer.