commit | b6f987cf936f8d84625f310abcb4b1518d45bcdc | [log] [tgz] |
---|---|---|
author | Paul Kehrer <paul.l.kehrer@gmail.com> | Thu May 01 19:27:52 2014 -0500 |
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | Thu May 01 19:27:52 2014 -0500 |
tree | b1910539654590982e0b9e82b83ecac019c608ed | |
parent | 0f600c508d6fe575bf366e9b41ddc15d9f51a071 [diff] |
ifndef and ifdef aren't the same thing
diff --git a/cryptography/hazmat/bindings/openssl/ecdh.py b/cryptography/hazmat/bindings/openssl/ecdh.py index adba015..77beb7a 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 """