[svn] commit: r4144 - in /branches/trac449/src/lib/cache: rrset_entry.cc rrset_entry.h

BIND 10 source code commits bind10-changes at lists.isc.org
Tue Jan 4 03:41:14 UTC 2011


Author: zhanglikun
Date: Tue Jan  4 03:41:14 2011
New Revision: 4144

Log:
Fix the error caused by last change.

Modified:
    branches/trac449/src/lib/cache/rrset_entry.cc
    branches/trac449/src/lib/cache/rrset_entry.h

Modified: branches/trac449/src/lib/cache/rrset_entry.cc
==============================================================================
--- branches/trac449/src/lib/cache/rrset_entry.cc (original)
+++ branches/trac449/src/lib/cache/rrset_entry.cc Tue Jan  4 03:41:14 2011
@@ -29,8 +29,9 @@
 {
 }
 
-boost::shared_ptr<RRset>
+boost::shared_ptr<isc::dns::RRset>
 RRsetEntry::genRRset() const {
+    return boost::shared_ptr<isc::dns::RRset> ();
 }
 
 time_t

Modified: branches/trac449/src/lib/cache/rrset_entry.h
==============================================================================
--- branches/trac449/src/lib/cache/rrset_entry.h (original)
+++ branches/trac449/src/lib/cache/rrset_entry.h Tue Jan  4 03:41:14 2011
@@ -69,7 +69,7 @@
     RRsetEntry(const isc::dns::RRset& rrset, const RRsetTrustLevel& level);
 
     /// \brief Generate one rrset according the entry information.
-    boost::shared_ptr<RRset> genRRset() const;
+    boost::shared_ptr<isc::dns::RRset> genRRset() const;
     
     /// \brief Get the expiration time of the rrset.
     time_t getExpireTime() const;




More information about the bind10-changes mailing list