]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[5551] Fixed some minor errors in commentrary.
authorMarcin Siodelski <marcin@isc.org>
Fri, 9 Mar 2018 09:17:56 +0000 (10:17 +0100)
committerMarcin Siodelski <marcin@isc.org>
Fri, 9 Mar 2018 09:17:56 +0000 (10:17 +0100)
src/lib/dhcp/tests/pkt6_unittest.cc
src/lib/dhcp/tests/pkt_captures.h

index 8289bee262c7ddd84a16ff4ebd5f3a3878263c28..28339c9a8cac9e8e2d41749c8e5a9ab920803d1b 100644 (file)
@@ -1699,7 +1699,7 @@ TEST_F(Pkt6Test, getLabelEmptyClientId) {
 // SkipRemainingOptionsError exception
 TEST_F(Pkt6Test, truncatedVendorLength) {
 
-    // Build a good discover packet
+    // Build a good Solicit packet
     Pkt6Ptr pkt = test::PktCaptures::captureSolicitWithVIVSO();
 
     // Unpacking should not throw
@@ -1714,7 +1714,7 @@ TEST_F(Pkt6Test, truncatedVendorLength) {
     ASSERT_TRUE(vivso);
     EXPECT_EQ(8, vivso->len()); // data + opt code + len
 
-    // Build a bad discover packet
+    // Build a bad Solicit packet
     pkt = test::PktCaptures::captureSolicitWithTruncatedVIVSO();
 
     // Unpack should throw Skip exception
index 6fdf6f9dffd4556ec15b195e82836be1482922c1..2f8ce420bef2098caa6eb5538f5b9ca990e96d78 100644 (file)
@@ -1,6 +1,7 @@
 // Copyright (C) 2014-2018 Internet Systems Consortium, Inc. ("ISC")
 //
-// This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
 #ifndef PKT_CAPTURES_H