We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4629db commit 371b5e2Copy full SHA for 371b5e2
stdlib/src/ssl.rs
@@ -121,7 +121,7 @@ mod _ssl {
121
#[pyattr]
122
const PROTO_MAXIMUM_SUPPORTED: i32 = ProtoVersion::MaxSupported as i32;
123
124
- const OP_ALL: libc::c_ulong = sys::SSL_OP_ALL & !sys::SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS;
+ const OP_ALL: libc::c_ulong = (sys::SSL_OP_ALL & !sys::SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) as _;
125
126
const HAS_TLS_UNIQUE: bool = true;
127
0 commit comments