Browse Source

worked around const handling of BOOST_FOREACH

git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@1023 e5f2f494-b856-4b98-b285-d166d9295462
JINMEI Tatuya 15 years ago
parent
commit
9d98075218
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/auth/cpp/data_source.cc

+ 1 - 1
src/lib/auth/cpp/data_source.cc

@@ -152,7 +152,7 @@ doQueryTask(const DataSrc* ds, Query& q, QueryTask& task, RRsetList& target) {
 
 // Copy referral information into the authority section of a message
 static inline void
-copyAuth(Query& q, const RRsetList& auth) {
+copyAuth(Query& q, RRsetList& auth) {
     Message& m = q.message();
     BOOST_FOREACH(RRsetPtr rrset, auth) {
         if (rrset->getType() == RRType::DNAME()) {