BIND 10 master, updated. c8b7abc5751b171621be9edd5156dd2691ff60d1 [master] small change to make it compile again on my system
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri Apr 29 12:15:26 UTC 2011
The branch, master has been updated
via c8b7abc5751b171621be9edd5156dd2691ff60d1 (commit)
from 43f9ce0c56cd14c0349a8f3c3c9a5f4dc092f65a (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 c8b7abc5751b171621be9edd5156dd2691ff60d1
Author: Jelte Jansen <jelte at isc.org>
Date: Fri Apr 29 14:14:58 2011 +0200
[master] small change to make it compile again on my system
acked by shane on jabber
-----------------------------------------------------------------------
Summary of changes:
src/lib/cryptolink/crypto_hmac.cc | 2 +-
src/lib/dns/tsig.cc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/cryptolink/crypto_hmac.cc b/src/lib/cryptolink/crypto_hmac.cc
index ea70c32..9c35f60 100644
--- a/src/lib/cryptolink/crypto_hmac.cc
+++ b/src/lib/cryptolink/crypto_hmac.cc
@@ -65,7 +65,7 @@ public:
isc_throw(isc::cryptolink::LibraryError, exc.what());
}
- hmac_.reset(new Botan::HMAC::HMAC(hash));
+ hmac_.reset(new Botan::HMAC(hash));
// If the key length is larger than the block size, we hash the
// key itself first.
diff --git a/src/lib/dns/tsig.cc b/src/lib/dns/tsig.cc
index c65d5ae..48ac5e0 100644
--- a/src/lib/dns/tsig.cc
+++ b/src/lib/dns/tsig.cc
@@ -130,7 +130,7 @@ TSIGContext::sign(const uint16_t qid, const void* const data,
if (error == TSIGError::BAD_SIG() || error == TSIGError::BAD_KEY()) {
ConstTSIGRecordPtr tsig(new TSIGRecord(
any::TSIG(impl_->key_.getAlgorithmName(),
- now, DEFAULT_FUDGE, NULL, 0,
+ now, DEFAULT_FUDGE, 0, NULL,
qid, error.getCode(), 0, NULL)));
impl_->previous_digest_.clear();
impl_->state_ = SIGNED;
More information about the bind10-changes
mailing list