diff options
| author | jsing <> | 2015-09-10 15:56:26 +0000 | 
|---|---|---|
| committer | jsing <> | 2015-09-10 15:56:26 +0000 | 
| commit | 1b9402de2dd1b97eca2be1996ed51c82f0663c92 (patch) | |
| tree | 27c1922db8e3f519794fe6a13a1dfba3d4759090 /src/lib/libssl/s3_lib.c | |
| parent | e1b77a3f14ebb06ead650e78b43ddd6546237b0a (diff) | |
| download | openbsd-1b9402de2dd1b97eca2be1996ed51c82f0663c92.tar.gz openbsd-1b9402de2dd1b97eca2be1996ed51c82f0663c92.tar.bz2 openbsd-1b9402de2dd1b97eca2be1996ed51c82f0663c92.zip  | |
Correct spelling of OPENSSL_cleanse.
ok miod@
Diffstat (limited to '')
| -rw-r--r-- | src/lib/libssl/s3_lib.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/s3_lib.c b/src/lib/libssl/s3_lib.c index 42396a21e9..4e6b123698 100644 --- a/src/lib/libssl/s3_lib.c +++ b/src/lib/libssl/s3_lib.c  | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: s3_lib.c,v 1.100 2015/08/27 06:21:15 doug Exp $ */ | 1 | /* $OpenBSD: s3_lib.c,v 1.101 2015/09/10 15:56:26 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 | * | 
| @@ -2066,7 +2066,7 @@ ssl3_free(SSL *s) | |||
| 2066 | ssl3_free_digest_list(s); | 2066 | ssl3_free_digest_list(s); | 
| 2067 | free(s->s3->alpn_selected); | 2067 | free(s->s3->alpn_selected); | 
| 2068 | 2068 | ||
| 2069 | OPENSSL_cleanse(s->s3, sizeof *s->s3); | 2069 | explicit_bzero(s->s3, sizeof *s->s3); | 
| 2070 | free(s->s3); | 2070 | free(s->s3); | 
| 2071 | s->s3 = NULL; | 2071 | s->s3 = NULL; | 
| 2072 | } | 2072 | } | 
