Changeset 6028 for pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_config.c
- Timestamp:
- Jun 13, 2019 5:58:18 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_config.c
r6004 r6028 1073 1073 if (pj_ansi_strnicmp(pj_optarg, "0x", 2) == 0) { 1074 1074 pj_str_t cipher_st = pj_str(pj_optarg + 2); 1075 cipher = pj_strtoul2(&cipher_st, NULL, 16);1075 cipher = (pj_ssl_cipher)pj_strtoul2(&cipher_st, NULL, 16); 1076 1076 } else { 1077 1077 cipher = atoi(pj_optarg); … … 1347 1347 if (pj_ansi_strnicmp(pj_optarg, "0x", 2) == 0) { 1348 1348 pj_str_t cipher_st = pj_str(pj_optarg + 2); 1349 cipher = pj_strtoul2(&cipher_st, NULL, 16);1349 cipher = (pj_ssl_cipher)pj_strtoul2(&cipher_st, NULL, 16); 1350 1350 } else { 1351 1351 cipher = atoi(pj_optarg);
Note: See TracChangeset
for help on using the changeset viewer.