This commit is contained in:
ajay-sabat 2025-01-17 16:40:19 +00:00 committed by GitHub
commit f5bdd3ffcc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1647,7 +1647,7 @@ static void switch_core_session_parse_crypto_prefs(switch_core_session_t *sessio
int ok = 0; int ok = 0;
for (j = 0; j < CRYPTO_INVALID; j++) { for (j = 0; j < CRYPTO_INVALID; j++) {
if (!strcasecmp(fields[i], SUITES[j].name)) { if (!strcasecmp(fields[i], SUITES[j].name) || !strcasecmp(fields[i], SUITES[j].alias)) {
smh->crypto_suite_order[k++] = SUITES[j].type; smh->crypto_suite_order[k++] = SUITES[j].type;
ok++; ok++;
break; break;