BIND 10 master, updated. 0ad8fea24b58d05e8c57337c7b77f1b76be12015 [master] fixed a build regression for SunStudio due to #1604. okayed on jabber.
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri Feb 3 19:41:14 UTC 2012
The branch, master has been updated
via 0ad8fea24b58d05e8c57337c7b77f1b76be12015 (commit)
from 58b7b149b8b3afbdbd8c960fc716f4e85f1803ee (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 0ad8fea24b58d05e8c57337c7b77f1b76be12015
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Fri Feb 3 19:40:21 2012 +0000
[master] fixed a build regression for SunStudio due to #1604. okayed on jabber.
-----------------------------------------------------------------------
Summary of changes:
src/lib/dns/rrset.h | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/dns/rrset.h b/src/lib/dns/rrset.h
index e43c1f0..5042a98 100644
--- a/src/lib/dns/rrset.h
+++ b/src/lib/dns/rrset.h
@@ -832,7 +832,8 @@ public:
// revisit the interface of managing RRset signatures, at which point this
// problem may go away.
virtual void addRRsig(const rdata::RdataPtr& rdata) {
- addRRsig(static_cast<const rdata::ConstRdataPtr&>(rdata));
+ // Don't try to convert as a reference here. SunStudio will reject it.
+ addRRsig(static_cast<const rdata::ConstRdataPtr>(rdata));
}
/// \brief Adds an RRSIG RRset to this RRset
More information about the bind10-changes
mailing list