BIND 10 trac2095, updated. 099edfbad5fba9dd7b29b35714d87f285f22c9aa [2095] a few more editorial fixes to comments.
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Jul 26 22:21:35 UTC 2012
The branch, trac2095 has been updated
via 099edfbad5fba9dd7b29b35714d87f285f22c9aa (commit)
from ea31c8f67cc105a285eb7068dcc1d8179e8040a7 (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 099edfbad5fba9dd7b29b35714d87f285f22c9aa
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Thu Jul 26 15:21:16 2012 -0700
[2095] a few more editorial fixes to comments.
-----------------------------------------------------------------------
Summary of changes:
src/lib/datasrc/memory/rdata_encoder.h | 6 +++---
.../datasrc/memory/tests/rdata_encoder_unittest.cc | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/datasrc/memory/rdata_encoder.h b/src/lib/datasrc/memory/rdata_encoder.h
index 2e45855..a537b73 100644
--- a/src/lib/datasrc/memory/rdata_encoder.h
+++ b/src/lib/datasrc/memory/rdata_encoder.h
@@ -182,7 +182,7 @@ public:
///
/// \note This implementation does not support RDATA (or any subfield of
/// it) whose size exceeds 65535 bytes (max uint16_t value). Such RDATA
- /// may not necessarily considered invalid in terms of protocol
+ /// may not necessarily be considered invalid in terms of protocol
/// specification, but in practice it's mostly useless because the
/// corresponding RR won't fit in any valid DNS message.
///
@@ -272,8 +272,8 @@ private:
RdataEncoderImpl* impl_;
};
-// We use the following quick-hack version of encoder and "foreach"
-// operator until we implement the complete versions. The plan is to
+// We use the following quick-hack version of "foreach"
+// operators until we implement the complete versions. The plan is to
// update the test cases that use these functions with the complete
// functions/classes, and then remove the entire namespace.
namespace testing {
diff --git a/src/lib/datasrc/memory/tests/rdata_encoder_unittest.cc b/src/lib/datasrc/memory/tests/rdata_encoder_unittest.cc
index 4273e7c..882262f 100644
--- a/src/lib/datasrc/memory/tests/rdata_encoder_unittest.cc
+++ b/src/lib/datasrc/memory/tests/rdata_encoder_unittest.cc
@@ -322,7 +322,7 @@ RdataEncoderTest::addRdataMultiCommon(const vector<ConstRdataPtr>& rrsigs) {
TEST_F(RdataEncoderTest, encodeLargeRdata) {
// There should be no reason for a large RDATA to fail in encoding,
- // but we check such a case explicitly.
+ // but we check such a case explicitly.
encoded_data_.resize(65535); // max unsigned 16-bit int
isc::util::InputBuffer buffer(&encoded_data_[0], encoded_data_.size());
More information about the bind10-changes
mailing list