diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-05-01 19:27:52 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-05-01 19:27:52 -0500 |
commit | b6f987cf936f8d84625f310abcb4b1518d45bcdc (patch) | |
tree | b1910539654590982e0b9e82b83ecac019c608ed | |
parent | 0f600c508d6fe575bf366e9b41ddc15d9f51a071 (diff) | |
download | cryptography-b6f987cf936f8d84625f310abcb4b1518d45bcdc.tar.gz cryptography-b6f987cf936f8d84625f310abcb4b1518d45bcdc.tar.bz2 cryptography-b6f987cf936f8d84625f310abcb4b1518d45bcdc.zip |
ifndef and ifdef aren't the same thing
-rw-r--r-- | cryptography/hazmat/bindings/openssl/ecdh.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/bindings/openssl/ecdh.py b/cryptography/hazmat/bindings/openssl/ecdh.py index adba0152..77beb7a3 100644 --- a/cryptography/hazmat/bindings/openssl/ecdh.py +++ b/cryptography/hazmat/bindings/openssl/ecdh.py @@ -14,7 +14,7 @@ from __future__ import absolute_import, division, print_function INCLUDES = """ -#ifdef OPENSSL_NO_ECDH +#ifndef OPENSSL_NO_ECDH #include <openssl/ecdh.h> #endif """ |