Some 'const's for BNs.
[openssl.git] / doc / crypto / RAND_load_file.pod
index 1cd14dc52f584e91a2fd5170f52b0a1cdf28a66a..3e7585516096fba4332f000d090b82c6d837e3a5 100644 (file)
@@ -8,7 +8,7 @@ RAND_load_file, RAND_write_file, RAND_file_name - PRNG seed file
 
  #include <openssl/rand.h>
 
- char *RAND_file_name(char *buf, int num);
+ const char *RAND_file_name(char *buf, int num);
 
  int RAND_load_file(const char *filename, long max_bytes);
 
@@ -28,7 +28,7 @@ up to to B<max_bytes> are read; if B<max_bytes> is -1, the complete file
 is read.
 
 RAND_write_file() writes a number of random bytes (currently 1024) to
-file B<filename> which can be used to initialze the PRNG by calling
+file B<filename> which can be used to initialize the PRNG by calling
 RAND_load_file() in a later session.
 
 =head1 RETURN VALUES