diff options
author | 2015-09-10 15:56:24 +0000 | |
---|---|---|
committer | 2015-09-10 15:56:24 +0000 | |
commit | 0f777b12ad023193791105beba95cb4fa7d67201 (patch) | |
tree | 60a255db2a046668cf589c4900cc8b4aeeb45fab /lib/libssl/src/crypto/ui/ui_openssl.c | |
parent | reduce more .Nd to one line and kill more .Tn (diff) | |
download | wireguard-openbsd-0f777b12ad023193791105beba95cb4fa7d67201.tar.xz wireguard-openbsd-0f777b12ad023193791105beba95cb4fa7d67201.zip |
Correct spelling of OPENSSL_cleanse.
ok miod@
Diffstat (limited to 'lib/libssl/src/crypto/ui/ui_openssl.c')
-rw-r--r-- | lib/libssl/src/crypto/ui/ui_openssl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/src/crypto/ui/ui_openssl.c b/lib/libssl/src/crypto/ui/ui_openssl.c index b3d2971a026..9562c2c937a 100644 --- a/lib/libssl/src/crypto/ui/ui_openssl.c +++ b/lib/libssl/src/crypto/ui/ui_openssl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ui_openssl.c,v 1.24 2015/07/16 02:46:49 guenther Exp $ */ +/* $OpenBSD: ui_openssl.c,v 1.25 2015/09/10 15:56:26 jsing Exp $ */ /* Written by Richard Levitte (richard@levitte.org) and others * for the OpenSSL project 2001. */ @@ -286,7 +286,7 @@ error: if (ps >= 1) popsig(); - OPENSSL_cleanse(result, BUFSIZ); + explicit_bzero(result, BUFSIZ); return ok; } |