projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
489eb74
)
Only include SRP headers when OPENSSL_NO_SRP is undefined
author
Richard Levitte
<levitte@openssl.org>
Thu, 22 Oct 2015 21:45:45 +0000
(23:45 +0200)
committer
Richard Levitte
<levitte@openssl.org>
Thu, 22 Oct 2015 21:45:45 +0000
(23:45 +0200)
[fixes github issue #447]
Reviewed-by: Tim Hudson <tjh@openssl.org>
crypto/bn/bn_srp.c
patch
|
blob
|
history
diff --git
a/crypto/bn/bn_srp.c
b/crypto/bn/bn_srp.c
index c575e6a245ce472f36c6fe24c5b6519383fbfdf3..a1e438c71a7bd0f4071177f054fab46feb3531d9 100644
(file)
--- a/
crypto/bn/bn_srp.c
+++ b/
crypto/bn/bn_srp.c
@@
-1,10
+1,11
@@
#include "bn_lcl.h"
#include "e_os.h"
-#include <openssl/srp.h>
-#include <internal/bn_srp.h>
#ifndef OPENSSL_NO_SRP
+#include <openssl/srp.h>
+#include <internal/bn_srp.h>
+
# if (BN_BYTES == 8)
# if (defined(_WIN32) || defined(_WIN64)) && !defined(__MINGW32__)
# define bn_pack4(a1,a2,a3,a4) ((a1##UI64<<48)|(a2##UI64<<32)|(a3##UI64<<16)|a4##UI64)