diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2018-08-30 09:40:46 -0400 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2018-08-30 09:40:46 -0400 |
commit | 2284eea98847bd42d3ddf7dead504baf3d544d98 (patch) | |
tree | 33008936006a97af432b24ed1744a5c400d0aaf5 /docs | |
parent | f2321848833b54fa668cffb0a1ab9d20e3ba6fba (diff) | |
download | cryptography-2284eea98847bd42d3ddf7dead504baf3d544d98.tar.gz cryptography-2284eea98847bd42d3ddf7dead504baf3d544d98.tar.bz2 cryptography-2284eea98847bd42d3ddf7dead504baf3d544d98.zip |
Fixes #4426 -- use modern idiom in our bindings docs (#4428)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/development/c-bindings.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/development/c-bindings.rst b/docs/development/c-bindings.rst index 8a9bb6de..1b58dab6 100644 --- a/docs/development/c-bindings.rst +++ b/docs/development/c-bindings.rst @@ -191,7 +191,7 @@ version, and it's impractical to create ``#ifdef`` statements for each one. In that case, it may make sense to either check for a particular version. For example, to check for OpenSSL 1.1.0 or newer:: - #if OPENSSL_VERSION_NUMBER >= 0x10100000L + #if CRYPTOGRAPHY_OPENSSL_110_OR_GREATER Sometimes, the version of a library on a particular platform will have features that you thought it wouldn't, based on its version. |