projects
/
openssl.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Constify DH-related code.
[openssl.git]
/
crypto
/
dh
/
dh_check.c
diff --git
a/crypto/dh/dh_check.c
b/crypto/dh/dh_check.c
index
7e5cfd8
..
f0373f7
100644
(file)
--- a/
crypto/dh/dh_check.c
+++ b/
crypto/dh/dh_check.c
@@
-70,7
+70,7
@@
* should hold.
*/
-int DH_check(DH *dh, int *ret)
+int DH_check(
const
DH *dh, int *ret)
{
int ok=0;
BN_CTX *ctx=NULL;