diff options
author | 2014-05-16 14:45:18 +0000 | |
---|---|---|
committer | 2014-05-16 14:45:18 +0000 | |
commit | eb96cf48e35fa7028e903963e60266c3a5a69282 (patch) | |
tree | 2b05ad5e46ee2f9542a2950db2fc226df8e05386 | |
parent | Fix various issues that result in compiler warnings. (diff) | |
download | wireguard-openbsd-eb96cf48e35fa7028e903963e60266c3a5a69282.tar.xz wireguard-openbsd-eb96cf48e35fa7028e903963e60266c3a5a69282.zip |
Include openssl/evp.h for OPENSSL_add_all_algorithms_noconf().
From Brent Cook.
-rw-r--r-- | regress/lib/libcrypto/rc4/rc4test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/regress/lib/libcrypto/rc4/rc4test.c b/regress/lib/libcrypto/rc4/rc4test.c index a0b08a63c33..c4d34b1a846 100644 --- a/regress/lib/libcrypto/rc4/rc4test.c +++ b/regress/lib/libcrypto/rc4/rc4test.c @@ -60,6 +60,7 @@ #include <stdlib.h> #include <string.h> +#include <openssl/evp.h> #include <openssl/rc4.h> #include <openssl/sha.h> |