This commit is contained in:
Ulf Möller 2000-09-20 03:42:15 +00:00
parent 18edda0f92
commit 7cae5f9fc8

4
FAQ
View File

@ -135,7 +135,7 @@ installing the SUNski package from Sun patch 105710-01 (Sparc) which
adds a /dev/random device and make sure it gets used, usually through adds a /dev/random device and make sure it gets used, usually through
$RANDFILE. There are probably similar patches for the other Solaris $RANDFILE. There are probably similar patches for the other Solaris
versions. However, be warned that /dev/random is usually a blocking versions. However, be warned that /dev/random is usually a blocking
device, which may have som effects on OpenSSL. device, which may have some effects on OpenSSL.
* Why does the linker complain about undefined symbols? * Why does the linker complain about undefined symbols?
@ -194,7 +194,7 @@ unsigned char *buf, *p;
int len; int len;
len = i2d_PKCS7(p7, NULL); len = i2d_PKCS7(p7, NULL);
buf = OPENSSL_Malloc(len); /* or Malloc, error checking omitted */ buf = OPENSSL_malloc(len); /* or Malloc, error checking omitted */
p = buf; p = buf;
i2d_PKCS7(p7, &p); i2d_PKCS7(p7, &p);