aboutsummaryrefslogtreecommitdiffstats
path: root/FAQ
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-09-20 03:42:15 +0000
committerUlf Möller <ulf@openssl.org>2000-09-20 03:42:15 +0000
commit7cae5f9fc8b1098b13f390b94a97a46b1eadeae1 (patch)
tree56acb28457b7c32396846ae79e7901c9378704ff /FAQ
parent18edda0f927e6919c1cff2d6e456cb8a0776239b (diff)
downloadopenssl-7cae5f9fc8b1098b13f390b94a97a46b1eadeae1.tar.gz
ispell.
Diffstat (limited to 'FAQ')
-rw-r--r--FAQ4
1 files changed, 2 insertions, 2 deletions
diff --git a/FAQ b/FAQ
index a381d1d862..f0d768916a 100644
--- a/FAQ
+++ b/FAQ
@@ -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
$RANDFILE. There are probably similar patches for the other Solaris
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?
@@ -194,7 +194,7 @@ unsigned char *buf, *p;
int len;
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;
i2d_PKCS7(p7, &p);