Changeset 4714 for pjproject


Ignore:
Timestamp:
Jan 23, 2014 8:15:34 AM (10 years ago)
Author:
nanang
Message:

Misc (re #1630): Fixed some typos in the code (thanks Tzafrir Cohen for the patch).

Location:
pjproject/trunk
Files:
5 edited

Legend:

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

    r4709 r4714  
    17121712        pj_ansi_snprintf(out_str,  
    17131713                         sizeof(out_str),  
    1714                          "Transfering current call [%d] %.*s\n", 
     1714                         "Transferring current call [%d] %.*s\n", 
    17151715                         current_call, 
    17161716                         (int)ci.remote_info.slen,  
  • pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_config.c

    r4537 r4714  
    195195    puts  ("  --thread-cnt=N      Number of worker threads (default:1)"); 
    196196    puts  ("  --duration=SEC      Set maximum call duration (default:no limit)"); 
    197     puts  ("  --norefersub        Suppress event subscription when transfering calls"); 
     197    puts  ("  --norefersub        Suppress event subscription when transferring calls"); 
    198198    puts  ("  --use-compact-form  Minimize SIP message size"); 
    199199    puts  ("  --no-force-lr       Allow strict-route to be used (i.e. do not force lr)"); 
  • pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_legacy.c

    r4710 r4714  
    10691069 
    10701070        pjsua_call_get_info(current_call, &ci); 
    1071         printf("Transfering current call [%d] %.*s\n", current_call, 
     1071        printf("Transferring current call [%d] %.*s\n", current_call, 
    10721072               (int)ci.remote_info.slen, ci.remote_info.ptr); 
    10731073 
  • pjproject/trunk/pjsip-apps/src/py_pjsua/pjsua_app.py

    r1438 r4714  
    412412                call = g_current_call            
    413413                ci = py_pjsua.call_get_info(g_current_call) 
    414                 print "Transfering current call ["+ `g_current_call` + "] " + ci.remote_info 
     414                print "Transferring current call ["+ `g_current_call` + "] " + ci.remote_info 
    415415                print "Enter sip url : " 
    416416                url = sys.stdin.readline() 
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c

    r4712 r4714  
    25722572                     dest, PJ_EINVAL); 
    25732573     
    2574     PJ_LOG(4,(THIS_FILE, "Transfering call %d to %.*s", call_id, 
     2574    PJ_LOG(4,(THIS_FILE, "Transferring call %d to %.*s", call_id, 
    25752575                         (int)dest->slen, dest->ptr)); 
    25762576    pj_log_push_indent(); 
     
    26532653                     PJ_EINVAL); 
    26542654     
    2655     PJ_LOG(4,(THIS_FILE, "Transfering call %d replacing with call %d", 
     2655    PJ_LOG(4,(THIS_FILE, "Transferring call %d replacing with call %d", 
    26562656                         call_id, dest_call_id)); 
    26572657    pj_log_push_indent(); 
Note: See TracChangeset for help on using the changeset viewer.