Ignore:
Timestamp:
Aug 25, 2015 8:45:46 AM (9 years ago)
Author:
nanang
Message:

Re #1881: Fixed compile warnings on VS2015 about declaration hides previous declaration.

File:
1 edited

Legend:

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

    r4826 r5170  
    17491749            } 
    17501750        } else if (result.uri_result) { 
    1751             pj_str_t tmp; 
    1752             tmp = pj_str(result.uri_result); 
    1753             pjsua_call_xfer( current_call, &tmp, &msg_data); 
     1751            pj_str_t tmp2; 
     1752            tmp2 = pj_str(result.uri_result); 
     1753            pjsua_call_xfer( current_call, &tmp2, &msg_data); 
    17541754        } 
    17551755    } 
     
    17691769        pj_str_t STR_FALSE = { "false", 5 }; 
    17701770        pjsua_call_id ids[PJSUA_MAX_CALLS]; 
    1771         pjsua_msg_data msg_data; 
     1771        pjsua_msg_data msg_data_; 
    17721772        char buf[8] = {0}; 
    17731773        pj_str_t tmp = pj_str(buf); 
     
    18231823        } 
    18241824 
    1825         pjsua_msg_data_init(&msg_data); 
     1825        pjsua_msg_data_init(&msg_data_); 
    18261826        if (app_config.no_refersub) { 
    18271827            /* Add Refer-Sub: false in outgoing REFER request */ 
    18281828            pjsip_generic_string_hdr_init2(&refer_sub, &STR_REFER_SUB, 
    18291829                                           &STR_FALSE); 
    1830             pj_list_push_back(&msg_data.hdr_list, &refer_sub); 
     1830            pj_list_push_back(&msg_data_.hdr_list, &refer_sub); 
    18311831        } 
    18321832 
    18331833        pjsua_call_xfer_replaces(call, dst_call, 
    18341834                                 PJSUA_XFER_NO_REQUIRE_REPLACES, 
    1835                                  &msg_data); 
     1835                                 &msg_data_); 
    18361836    } 
    18371837    return PJ_SUCCESS; 
     
    26622662} 
    26632663 
    2664 static pj_status_t add_call_command(pj_cli_t *cli) 
     2664static pj_status_t add_call_command(pj_cli_t *c) 
    26652665{ 
    26662666    char* call_command = 
     
    27342734 
    27352735    pj_str_t xml = pj_str(call_command); 
    2736     return pj_cli_add_cmd_from_xml(cli, NULL, 
     2736    return pj_cli_add_cmd_from_xml(c, NULL, 
    27372737                                   &xml, cmd_call_handler, 
    27382738                                   NULL, get_choice_value); 
    27392739} 
    27402740 
    2741 static pj_status_t add_presence_command(pj_cli_t *cli) 
     2741static pj_status_t add_presence_command(pj_cli_t *c) 
    27422742{ 
    27432743    char* presence_command = 
     
    27902790    pj_str_t xml = pj_str(presence_command); 
    27912791 
    2792     return pj_cli_add_cmd_from_xml(cli, NULL, 
     2792    return pj_cli_add_cmd_from_xml(c, NULL, 
    27932793                                   &xml, cmd_presence_handler, 
    27942794                                   NULL, get_choice_value); 
    27952795} 
    27962796 
    2797 static pj_status_t add_account_command(pj_cli_t *cli) 
     2797static pj_status_t add_account_command(pj_cli_t *c) 
    27982798{ 
    27992799    char* account_command = 
     
    28352835 
    28362836    pj_str_t xml = pj_str(account_command); 
    2837     return pj_cli_add_cmd_from_xml(cli, NULL, 
     2837    return pj_cli_add_cmd_from_xml(c, NULL, 
    28382838                                   &xml, cmd_account_handler, 
    28392839                                   NULL, get_choice_value); 
    28402840} 
    28412841 
    2842 static pj_status_t add_media_command(pj_cli_t *cli) 
     2842static pj_status_t add_media_command(pj_cli_t *c) 
    28432843{ 
    28442844    char* media_command = 
     
    28702870 
    28712871    pj_str_t xml = pj_str(media_command); 
    2872     return pj_cli_add_cmd_from_xml(cli, NULL, 
     2872    return pj_cli_add_cmd_from_xml(c, NULL, 
    28732873                                   &xml, cmd_media_handler, 
    28742874                                   NULL, get_choice_value); 
    28752875} 
    28762876 
    2877 static pj_status_t add_config_command(pj_cli_t *cli) 
     2877static pj_status_t add_config_command(pj_cli_t *c) 
    28782878{ 
    28792879    char* config_command = 
     
    28912891 
    28922892    pj_str_t xml = pj_str(config_command); 
    2893     return pj_cli_add_cmd_from_xml(cli, NULL, 
     2893    return pj_cli_add_cmd_from_xml(c, NULL, 
    28942894                                   &xml, cmd_config_handler, 
    28952895                                   NULL, get_choice_value); 
     
    30423042#endif 
    30433043 
    3044 static pj_status_t add_other_command(pj_cli_t *cli) 
     3044static pj_status_t add_other_command(pj_cli_t *c) 
    30453045{ 
    30463046    char* sleep_command = 
     
    30693069    pj_str_t restart_xml = pj_str(restart_command); 
    30703070 
    3071     status = pj_cli_add_cmd_from_xml(cli, NULL, 
     3071    status = pj_cli_add_cmd_from_xml(c, NULL, 
    30723072                                     &sleep_xml, cmd_sleep_handler, 
    30733073                                     NULL, NULL); 
     
    30753075        return status; 
    30763076 
    3077     status = pj_cli_add_cmd_from_xml(cli, NULL, 
     3077    status = pj_cli_add_cmd_from_xml(c, NULL, 
    30783078                                     &network_xml, cmd_network_handler, 
    30793079                                     NULL, NULL); 
     
    30813081        return status; 
    30823082 
    3083     status = pj_cli_add_cmd_from_xml(cli, NULL, 
     3083    status = pj_cli_add_cmd_from_xml(c, NULL, 
    30843084                                     &shutdown_xml, cmd_quit_handler, 
    30853085                                     NULL, NULL); 
     
    30883088        return status; 
    30893089 
    3090     status = pj_cli_add_cmd_from_xml(cli, NULL, 
     3090    status = pj_cli_add_cmd_from_xml(c, NULL, 
    30913091                                     &restart_xml, cmd_restart_handler, 
    30923092                                     NULL, NULL); 
     
    30953095} 
    30963096 
    3097 pj_status_t cli_setup_command(pj_cli_t *cli) 
     3097pj_status_t cli_setup_command(pj_cli_t *c) 
    30983098{ 
    30993099    pj_status_t status; 
    31003100 
    3101     status = add_call_command(cli); 
     3101    status = add_call_command(c); 
    31023102    if (status != PJ_SUCCESS) 
    31033103        return status; 
    31043104 
    3105     status = add_presence_command(cli); 
     3105    status = add_presence_command(c); 
    31063106    if (status != PJ_SUCCESS) 
    31073107        return status; 
    31083108 
    3109     status = add_account_command(cli); 
     3109    status = add_account_command(c); 
    31103110    if (status != PJ_SUCCESS) 
    31113111        return status; 
    31123112 
    3113     status = add_media_command(cli); 
     3113    status = add_media_command(c); 
    31143114    if (status != PJ_SUCCESS) 
    31153115        return status; 
    31163116 
    3117     status = add_config_command(cli); 
     3117    status = add_config_command(c); 
    31183118    if (status != PJ_SUCCESS) 
    31193119        return status; 
    31203120 
    31213121#if PJSUA_HAS_VIDEO 
    3122     status = add_video_command(cli); 
     3122    status = add_video_command(c); 
    31233123    if (status != PJ_SUCCESS) 
    31243124        return status; 
    31253125#endif 
    31263126 
    3127     status = add_other_command(cli); 
     3127    status = add_other_command(c); 
    31283128 
    31293129    return status; 
Note: See TracChangeset for help on using the changeset viewer.