summaryrefslogtreecommitdiffstats
path: root/crypto/openssl/crypto/des/enc_writ.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssl/crypto/des/enc_writ.c')
-rw-r--r--crypto/openssl/crypto/des/enc_writ.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/openssl/crypto/des/enc_writ.c b/crypto/openssl/crypto/des/enc_writ.c
index bfaabde..c2aaa8e 100644
--- a/crypto/openssl/crypto/des/enc_writ.c
+++ b/crypto/openssl/crypto/des/enc_writ.c
@@ -135,7 +135,7 @@ int DES_enc_write(int fd, const void *_buf, int len,
if (len < 8) {
cp = shortbuf;
memcpy(shortbuf, buf, len);
- if (RAND_pseudo_bytes(shortbuf + len, 8 - len) < 0) {
+ if (RAND_bytes(shortbuf + len, 8 - len) <= 0) {
return -1;
}
rnum = 8;
OpenPOWER on IntegriCloud