diff options
| author | jsing <> | 2015-09-10 15:56:26 +0000 |
|---|---|---|
| committer | jsing <> | 2015-09-10 15:56:26 +0000 |
| commit | 647569a51c1530d10e75e272f0982682f696caa7 (patch) | |
| tree | 27c1922db8e3f519794fe6a13a1dfba3d4759090 /src/lib/libcrypto/rand/randfile.c | |
| parent | 82208d32389873dc0a35e1efb027536202112bf6 (diff) | |
| download | openbsd-647569a51c1530d10e75e272f0982682f696caa7.tar.gz openbsd-647569a51c1530d10e75e272f0982682f696caa7.tar.bz2 openbsd-647569a51c1530d10e75e272f0982682f696caa7.zip | |
Correct spelling of OPENSSL_cleanse.
ok miod@
Diffstat (limited to 'src/lib/libcrypto/rand/randfile.c')
| -rw-r--r-- | src/lib/libcrypto/rand/randfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/rand/randfile.c b/src/lib/libcrypto/rand/randfile.c index 6948a83634..72c065c48d 100644 --- a/src/lib/libcrypto/rand/randfile.c +++ b/src/lib/libcrypto/rand/randfile.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: randfile.c,v 1.41 2015/07/18 22:46:42 beck Exp $ */ | 1 | /* $OpenBSD: randfile.c,v 1.42 2015/09/10 15:56:25 jsing Exp $ */ |
| 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
| 3 | * All rights reserved. | 3 | * All rights reserved. |
| 4 | * | 4 | * |
| @@ -130,7 +130,7 @@ RAND_write_file(const char *file) | |||
| 130 | } | 130 | } |
| 131 | 131 | ||
| 132 | fclose(out); | 132 | fclose(out); |
| 133 | OPENSSL_cleanse(buf, BUFSIZE); | 133 | explicit_bzero(buf, BUFSIZE); |
| 134 | return ret; | 134 | return ret; |
| 135 | } | 135 | } |
| 136 | 136 | ||
