diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2015-09-10 15:04:00 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2015-09-10 15:04:00 +0000 |
commit | 3a518e4ad573c57d1cc478fe3257cbd80f7098fc (patch) | |
tree | d9b4ac945319f5e9e1931b930438d3a6d632dc76 /lib/libcrypto/md4 | |
parent | d423967c36ced695e267c232dd10a31fbf95d1e1 (diff) |
Remove pointless comments.
ok "captain obvious"
Diffstat (limited to 'lib/libcrypto/md4')
-rw-r--r-- | lib/libcrypto/md4/md4_one.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/md4/md4_one.c b/lib/libcrypto/md4/md4_one.c index 911af0514c8..144f131914f 100644 --- a/lib/libcrypto/md4/md4_one.c +++ b/lib/libcrypto/md4/md4_one.c @@ -1,4 +1,4 @@ -/* $OpenBSD: md4_one.c,v 1.6 2014/06/12 15:49:29 deraadt Exp $ */ +/* $OpenBSD: md4_one.c,v 1.7 2015/09/10 15:03:58 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -71,7 +71,7 @@ unsigned char *MD4(const unsigned char *d, size_t n, unsigned char *md) return NULL; MD4_Update(&c,d,n); MD4_Final(md,&c); - OPENSSL_cleanse(&c,sizeof(c)); /* security consideration */ + OPENSSL_cleanse(&c,sizeof(c)); return(md); } |