Browse Source

spelling: verify

Josh Soref 7 years ago
parent
commit
5f49f462d1

+ 1 - 1
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

+ 1 - 1
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()));

+ 1 - 1
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());