| commit | a59347eb4c61a8a20f6353da9726fade6b125e87 | [log] [tgz] |
|---|---|---|
| author | Adam Langley <agl@google.com> | Wed Jun 24 17:02:15 2015 -0700 |
| committer | Adam Langley <agl@google.com> | Wed Jun 24 17:02:15 2015 -0700 |
| tree | 5596455db9c9f39c251fb37bfeb955d1c99eee68 | |
| parent | 3e5e99d83445dd4e565a840e013621f8120382bc [diff] |
RAND_set_rand_method takes a const parameter. Change-Id: I37e7c00deeb74aa0b71ee0d3a242d33d4d413cf0
diff --git a/crypto/rand/rand.c b/crypto/rand/rand.c index de65b4e..daebdf0 100644 --- a/crypto/rand/rand.c +++ b/crypto/rand/rand.c
@@ -181,4 +181,4 @@ return (RAND_METHOD*) &kSSLeayMethod; } -void RAND_set_rand_method(RAND_METHOD *method) {} +void RAND_set_rand_method(const RAND_METHOD *method) {}