Fix case of new functions in error files.
[openssl.git] / crypto / rand / rand_lib.c
index c4b44e5186ca66cfe58e77170a7af9e725ad73fe..6bea09211cee76baf85fcac841b88a6fed92018b 100644 (file)
@@ -57,7 +57,6 @@
  */
 
 #include <stdio.h>
-#include "cryptlib.h"
 #include <sys/types.h>
 #include <time.h>
 #include "rand.h"
@@ -65,8 +64,8 @@
 #ifdef NO_RAND
 static RAND_METHOD *rand_meth=NULL;
 #else
-extern RAND_METHOD rand_ssleay;
-static RAND_METHOD *rand_meth= &rand_ssleay;
+extern RAND_METHOD rand_ssleay_meth;
+static RAND_METHOD *rand_meth= &rand_ssleay_meth;
 #endif
 
 void RAND_set_rand_method(meth)
@@ -87,7 +86,7 @@ void RAND_cleanup()
        }
 
 void RAND_seed(buf,num)
-unsigned char *buf;
+const void *buf;
 int num;
        {
        if (rand_meth != NULL)