BIND 10 master, updated. b8855cafa94a12af7e087a4866367f2336e10bdb [master] make signHMAC match header
BIND 10 source code commits
bind10-changes at lists.isc.org
Tue May 24 14:51:08 UTC 2011
The branch, master has been updated
via b8855cafa94a12af7e087a4866367f2336e10bdb (commit)
from 6ea285d4f7cf6a9fd18bd9a3811944fc02d0e34c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit b8855cafa94a12af7e087a4866367f2336e10bdb
Author: Jeremy C. Reed <jreed at ISC.org>
Date: Tue May 24 09:49:10 2011 -0500
[master] make signHMAC match header
use "const" for second parameter (const size_t data_len).
This was noticed by Undefined symbol when linking when compiling
using Sunstudio.
Okayed on jabber.
-----------------------------------------------------------------------
Summary of changes:
src/lib/cryptolink/crypto_hmac.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/cryptolink/crypto_hmac.cc b/src/lib/cryptolink/crypto_hmac.cc
index 14b43b3..af0c18e 100644
--- a/src/lib/cryptolink/crypto_hmac.cc
+++ b/src/lib/cryptolink/crypto_hmac.cc
@@ -246,7 +246,7 @@ HMAC::verify(const void* sig, const size_t len) {
}
void
-signHMAC(const void* data, size_t data_len, const void* secret,
+signHMAC(const void* data, const size_t data_len, const void* secret,
size_t secret_len, const HashAlgorithm hash_algorithm,
isc::util::OutputBuffer& result, size_t len)
{
More information about the bind10-changes
mailing list