]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
spelling: occurring
authorJosh Soref <jsoref@users.noreply.github.com>
Sun, 23 Jul 2017 18:58:22 +0000 (14:58 -0400)
committerJosh Soref <jsoref@users.noreply.github.com>
Sun, 23 Jul 2017 18:58:22 +0000 (14:58 -0400)
src/bin/d2/tests/nc_add_unittests.cc
src/bin/d2/tests/nc_remove_unittests.cc
src/lib/dhcpsrv/mysql_connection.h

index 45bb9598237e385deb48e9645785963c4db42c7e..793c3a72bb8b03fdf5f35df12642b277ad544894 100644 (file)
@@ -479,7 +479,7 @@ TEST_F(NameAddTransactionTest, selectingFwdServerHandler) {
                   name_add->getNextEvent())
                   << " num_servers: " << num_servers << " selections: " << i;
 
-        // Post a server IO error event.  This simulates an IO error occuring
+        // Post a server IO error event.  This simulates an IO error occurring
         // and a need to select the new server.
         ASSERT_NO_THROW(name_add->postNextEvent(NameChangeTransaction::
                                                 SERVER_IO_ERROR_EVT))
@@ -1213,7 +1213,7 @@ TEST_F(NameAddTransactionTest, selectingRevServerHandler) {
                   name_add->getNextEvent())
                   << " num_servers: " << num_servers << " selections: " << i;
 
-        // Post a server IO error event.  This simulates an IO error occuring
+        // Post a server IO error event.  This simulates an IO error occurring
         // and a need to select the new server.
         ASSERT_NO_THROW(name_add->postNextEvent(NameChangeTransaction::
                                                 SERVER_IO_ERROR_EVT))
index a5093562b321ebdb28f6c2ebe17a578298af3e1e..8102b28171249cb284ca76e1cbc6e1e9ae98ed27 100644 (file)
@@ -481,7 +481,7 @@ TEST_F(NameRemoveTransactionTest, selectingFwdServerHandler) {
                   name_remove->getNextEvent())
                   << " num_servers: " << num_servers << " selections: " << i;
 
-        // Post a server IO error event.  This simulates an IO error occuring
+        // Post a server IO error event.  This simulates an IO error occurring
         // and a need to select the new server.
         ASSERT_NO_THROW(name_remove->postNextEvent(NameChangeTransaction::
                                                    SERVER_IO_ERROR_EVT))
@@ -1203,7 +1203,7 @@ TEST_F(NameRemoveTransactionTest, selectingRevServerHandler) {
                   name_remove->getNextEvent())
                   << " num_servers: " << num_servers << " selections: " << i;
 
-        // Post a server IO error event.  This simulates an IO error occuring
+        // Post a server IO error event.  This simulates an IO error occurring
         // and a need to select the new server.
         ASSERT_NO_THROW(name_remove->postNextEvent(NameChangeTransaction::
                                                 SERVER_IO_ERROR_EVT))
index d2559c534c5bbfc280a532b1989aeeeb248d9f65..322b33fdae19c90f528b8adb814083914aea82d5 100644 (file)
@@ -381,7 +381,7 @@ public:
             switch(mysql_errno(mysql_)) {
                 // These are the ones we consider fatal. Remember this method is
                 // used to check errors of API calls made subsequent to successfully
-                // connecting.  Errors occuring while attempting to connect are
+                // connecting.  Errors occurring while attempting to connect are
                 // checked in the connection code. An alternative would be to call
                 // mysql_ping() - assuming autoreconnect is off. If that fails
                 // then we know connection is toast.