summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ui/ui_openssl.c
diff options
context:
space:
mode:
authorjsing <>2015-09-10 15:56:26 +0000
committerjsing <>2015-09-10 15:56:26 +0000
commit647569a51c1530d10e75e272f0982682f696caa7 (patch)
tree27c1922db8e3f519794fe6a13a1dfba3d4759090 /src/lib/libcrypto/ui/ui_openssl.c
parent82208d32389873dc0a35e1efb027536202112bf6 (diff)
downloadopenbsd-647569a51c1530d10e75e272f0982682f696caa7.tar.gz
openbsd-647569a51c1530d10e75e272f0982682f696caa7.tar.bz2
openbsd-647569a51c1530d10e75e272f0982682f696caa7.zip
Correct spelling of OPENSSL_cleanse.
ok miod@
Diffstat (limited to 'src/lib/libcrypto/ui/ui_openssl.c')
-rw-r--r--src/lib/libcrypto/ui/ui_openssl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ui/ui_openssl.c b/src/lib/libcrypto/ui/ui_openssl.c
index b3d2971a02..9562c2c937 100644
--- a/src/lib/libcrypto/ui/ui_openssl.c
+++ b/src/lib/libcrypto/ui/ui_openssl.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ui_openssl.c,v 1.24 2015/07/16 02:46:49 guenther Exp $ */ 1/* $OpenBSD: ui_openssl.c,v 1.25 2015/09/10 15:56:26 jsing Exp $ */
2/* Written by Richard Levitte (richard@levitte.org) and others 2/* Written by Richard Levitte (richard@levitte.org) and others
3 * for the OpenSSL project 2001. 3 * for the OpenSSL project 2001.
4 */ 4 */
@@ -286,7 +286,7 @@ error:
286 if (ps >= 1) 286 if (ps >= 1)
287 popsig(); 287 popsig();
288 288
289 OPENSSL_cleanse(result, BUFSIZ); 289 explicit_bzero(result, BUFSIZ);
290 return ok; 290 return ok;
291} 291}
292 292