NSS: make colons, commas and spaces valid separators in cipher list
Fixes #7110 Closes #7115
This commit is contained in:
Родитель
e61d8e36d2
Коммит
96adbf5cdb
|
@ -337,7 +337,7 @@ static SECStatus set_ciphers(struct Curl_easy *data, PRFileDesc * model,
|
|||
while((*cipher) && (ISSPACE(*cipher)))
|
||||
++cipher;
|
||||
|
||||
cipher_list = strchr(cipher, ',');
|
||||
cipher_list = strpbrk(cipher, ":, ");
|
||||
if(cipher_list) {
|
||||
*cipher_list++ = '\0';
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче