Skip to content

Commit 6e89853

Browse files
committed
Merge #907: changed import to use brackets <> for openssl
4504472 changed import to use brackets <> for openssl as they are not local to the project (William Bright) Pull request description: ACKs for top commit: real-or-random: ACK 4504472 jonasnick: ACK 4504472 Tree-SHA512: e35c202835a82dab5fe9f2f75e7752e70b15d5d2ee7485790749f145b35e8e995c4978b4015c726387c24248a7efb636d28791fe882581a144a0ddfb27e14075
2 parents 26de4df + 4504472 commit 6e89853

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/tests.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
#include "util.h"
2222

2323
#ifdef ENABLE_OPENSSL_TESTS
24-
#include "openssl/bn.h"
25-
#include "openssl/ec.h"
26-
#include "openssl/ecdsa.h"
27-
#include "openssl/obj_mac.h"
24+
#include <openssl/bn.h>
25+
#include <openssl/ec.h>
26+
#include <openssl/ecdsa.h>
27+
#include <openssl/obj_mac.h>
2828
# if OPENSSL_VERSION_NUMBER < 0x10100000L
2929
void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps) {*pr = sig->r; *ps = sig->s;}
3030
# endif

0 commit comments

Comments
 (0)