| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent d6fbd81 commit 755619c
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5370,7 +5370,7 @@ void GetSSLCiphers(const FunctionCallbackInfo<Value>& args) { | |||
| 5370 | 5370 | STACK_OF(SSL_CIPHER)* ciphers = SSL_get_ciphers(ssl); | |
| 5371 | 5371 | ||
| 5372 | 5372 | for (int i = 0; i < sk_SSL_CIPHER_num(ciphers); ++i) { | |
| 5373 | - SSL_CIPHER* cipher = sk_SSL_CIPHER_value(ciphers, i); | ||
| 5373 | + const SSL_CIPHER* cipher = sk_SSL_CIPHER_value(ciphers, i); | ||
| 5374 | 5374 | arr->Set(i, OneByteString(args.GetIsolate(), SSL_CIPHER_get_name(cipher))); | |
| 5375 | 5375 | } | |
| 5376 | 5376 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments