diff options
author | dougb <dougb@FreeBSD.org> | 2006-12-10 07:09:56 +0000 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2006-12-10 07:09:56 +0000 |
commit | 41cdd45e73179c04fe3fcedc4feda5612d7e9fa3 (patch) | |
tree | c73f828c2a083130f1c6feb338b9eed8a9b4af4b /contrib/bind9/lib/isc/hmacmd5.c | |
parent | 9e691e8708e184ae2eecdf61f614b92c7755a89e (diff) | |
parent | f5d31f05bda6a88f1513a06d3fd67e6fbaa0688e (diff) | |
download | FreeBSD-src-41cdd45e73179c04fe3fcedc4feda5612d7e9fa3.zip FreeBSD-src-41cdd45e73179c04fe3fcedc4feda5612d7e9fa3.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r165071,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/bind9/lib/isc/hmacmd5.c')
-rw-r--r-- | contrib/bind9/lib/isc/hmacmd5.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/contrib/bind9/lib/isc/hmacmd5.c b/contrib/bind9/lib/isc/hmacmd5.c index 04dc8c5..5166a98 100644 --- a/contrib/bind9/lib/isc/hmacmd5.c +++ b/contrib/bind9/lib/isc/hmacmd5.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004, 2006 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 2000, 2001 Internet Software Consortium. * * Permission to use, copy, modify, and distribute this software for any @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: hmacmd5.c,v 1.5.12.3 2004/03/08 09:04:48 marka Exp $ */ +/* $Id: hmacmd5.c,v 1.5.12.5 2006/02/26 23:49:48 marka Exp $ */ /* * This code implements the HMAC-MD5 keyed hash algorithm @@ -65,7 +65,6 @@ void isc_hmacmd5_invalidate(isc_hmacmd5_t *ctx) { isc_md5_invalidate(&ctx->md5ctx); memset(ctx->key, 0, sizeof(ctx->key)); - memset(ctx, 0, sizeof(ctx)); } /* |