summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2017-07-23 23:21:00 +0200
committerJosh Soref <jsoref@users.noreply.github.com>2017-07-23 23:21:00 +0200
commit5f49f462d167b4b7db3c231ef913f502beae39ed (patch)
tree2fd0ab1e2455ec4715f9788234beeb6d1977acd1
parentspelling: verifies (diff)
downloadkea-5f49f462d167b4b7db3c231ef913f502beae39ed.tar.xz
kea-5f49f462d167b4b7db3c231ef913f502beae39ed.zip
spelling: verify
-rw-r--r--src/bin/d2/d2_update_message.h2
-rw-r--r--src/bin/d2/tests/d2_update_mgr_unittests.cc2
-rw-r--r--src/bin/d2/tests/nc_trans_unittests.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/d2/d2_update_message.h b/src/bin/d2/d2_update_message.h
index db56540511..ad01a9ce69 100644
--- a/src/bin/d2/d2_update_message.h
+++ b/src/bin/d2/d2_update_message.h
@@ -277,7 +277,7 @@ public:
/// This function decodes the DNS Update message stored in the buffer
/// specified by the function argument. If given a TSIG context, then
/// the function will first attempt to use that context to verify the
- /// message signature. If verification fails a TSIGVefiryError exception
+ /// message signature. If verification fails a TSIGVerifyError exception
/// will be thrown. The function then parses message header and extracts
/// the section counters: ZOCOUNT, PRCOUNT, UPCOUNT and ADCOUNT. Using
/// these counters, function identifies message sections, which follow
diff --git a/src/bin/d2/tests/d2_update_mgr_unittests.cc b/src/bin/d2/tests/d2_update_mgr_unittests.cc
index b1492ca3c4..b4c5827218 100644
--- a/src/bin/d2/tests/d2_update_mgr_unittests.cc
+++ b/src/bin/d2/tests/d2_update_mgr_unittests.cc
@@ -485,7 +485,7 @@ TEST_F(D2UpdateMgrTest, checkFinishedTransaction) {
// Verify that the list of transactions has decreased by two.
EXPECT_EQ(canned_count_ - 2, update_mgr_->getTransactionCount());
- // Vefity that the transaction list is correct.
+ // Verify that the transaction list is correct.
EXPECT_TRUE(update_mgr_->hasTransaction(canned_ncrs_[0]->getDhcid()));
EXPECT_FALSE(update_mgr_->hasTransaction(canned_ncrs_[1]->getDhcid()));
EXPECT_TRUE(update_mgr_->hasTransaction(canned_ncrs_[2]->getDhcid()));
diff --git a/src/bin/d2/tests/nc_trans_unittests.cc b/src/bin/d2/tests/nc_trans_unittests.cc
index 9b10fad888..33fc24be64 100644
--- a/src/bin/d2/tests/nc_trans_unittests.cc
+++ b/src/bin/d2/tests/nc_trans_unittests.cc
@@ -836,7 +836,7 @@ TEST_F(NameChangeTransactionTest, failedUpdateTest) {
// should run up until the "IO" operation is initiated in DOING_UPDATE_ST.
ASSERT_NO_THROW(name_change->startTransaction());
- // Vefity that the model is running but waiting, and that the forward
+ // Verify that the model is running but waiting, and that the forward
// change has not been completed.
EXPECT_TRUE(name_change->isModelRunning());
EXPECT_TRUE(name_change->isModelWaiting());