]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[1574b] updated some comments so they'll be less confusing
authorJINMEI Tatuya <jinmei@isc.org>
Tue, 31 Jan 2012 18:04:16 +0000 (10:04 -0800)
committerJINMEI Tatuya <jinmei@isc.org>
Tue, 31 Jan 2012 18:04:16 +0000 (10:04 -0800)
src/lib/dns/python/tests/nsec3hash_python_test.py
src/lib/dns/tests/nsec3hash_unittest.cc

index 3c9329e5ae388989b19a164cb0be686e05fbcd34..1a247d03efea9f527d77b09752292fc771f664cf 100644 (file)
@@ -104,7 +104,7 @@ class NSEC3HashTest(unittest.TestCase):
         # Salt doesn't match: the other has an empty salt
         self.assertFalse(hash.match(Rdata(rrtype, RRClass.IN(),
                                           "1 0 12 -" + postfix)))
-        # Flags doesn't matter
+        # Flag doesn't matter
         self.assertTrue(hash.match(Rdata(rrtype, RRClass.IN(),
                                          "1 1 12 aabbccdd" + postfix)))
 
index 4bd46faba06659da43a7a4326dd34eb857b85584..36a1d4d5eec31d83a833ff46726694fa03721c83 100644 (file)
@@ -115,7 +115,7 @@ matchCheck(NSEC3Hash& hash, const string& postfix) {
     EXPECT_FALSE(hash.match(RDATAType("1 0 12 aabbccde" + postfix)));
     // Salt doesn't match: the other has an empty salt
     EXPECT_FALSE(hash.match(RDATAType("1 0 12 -" + postfix)));
-    // Flags doesn't matter
+    // Flags don't matter
     EXPECT_TRUE(hash.match(RDATAType("1 1 12 aabbccdd" + postfix)));
 }