diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-28 11:03:45 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-28 11:03:45 -0800 |
commit | 0c782cf19a1c79e1b95c01876ac020784a058506 (patch) | |
tree | 20dd7f5ad150a308a6f2ff81fba28bed22e1fadd | |
parent | 611c27d1ec36f29276072d484882376e87e92728 (diff) | |
download | cryptography-0c782cf19a1c79e1b95c01876ac020784a058506.tar.gz cryptography-0c782cf19a1c79e1b95c01876ac020784a058506.tar.bz2 cryptography-0c782cf19a1c79e1b95c01876ac020784a058506.zip |
Whoops, backwards
-rw-r--r-- | cryptography/hazmat/bindings/openssl/ec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/bindings/openssl/ec.py b/cryptography/hazmat/bindings/openssl/ec.py index 57da7634..10bb011f 100644 --- a/cryptography/hazmat/bindings/openssl/ec.py +++ b/cryptography/hazmat/bindings/openssl/ec.py @@ -12,7 +12,7 @@ # limitations under the License. INCLUDES = """ -#ifdef OPENSSL_NO_EC +#ifndef OPENSSL_NO_EC #include <openssl/ec.h> #endif |