]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
spelling: necessarily
authorJosh Soref <jsoref@users.noreply.github.com>
Sun, 23 Jul 2017 18:54:32 +0000 (14:54 -0400)
committerJosh Soref <jsoref@users.noreply.github.com>
Sun, 23 Jul 2017 18:54:32 +0000 (14:54 -0400)
src/lib/asiodns/io_fetch.cc
src/lib/asiolink/tests/tcp_acceptor_unittest.cc
src/lib/asiolink/tests/tcp_socket_unittest.cc
src/lib/http/tests/listener_unittests.cc

index fcc8d52bce419d31b9dad0467c35bf1403598cf0..a836871aa0c9a1efc5dc83a392b289a60bcdba1a 100644 (file)
@@ -234,7 +234,7 @@ IOFetch::operator()(boost::system::error_code ec, size_t length) {
         return;
 
     // On Debian it has been often observed that boost::asio async
-    // operations result in EINPROGRESS. This doesn't neccessarily
+    // operations result in EINPROGRESS. This doesn't necessarily
     // indicate an issue. Thus, we continue as if no error occurred.
     } else if (ec && (ec.value() != boost::asio::error::in_progress)) {
         logIOFailure(ec);
index fbfe5e6dc3e5a5b02ae937d9f9c76f47103ba888..a88a07a9716ebb2f9d8ec7ec83e0aacb01520fcd 100644 (file)
@@ -97,7 +97,7 @@ public:
             // error code, but simply wait for the connection to get
             // established before the handler is invoked. It turns out, however,
             // that on some OSes the connect handler may receive this error code
-            // which doesn't neccessarily indicate a problem. Making an attempt
+            // which doesn't necessarily indicate a problem. Making an attempt
             // to write and read from this socket will typically succeed. So,
             // we ignore this error.
             if (ec.value() != boost::asio::error::in_progress) {
index 5d9400a8f85997adf2c54ac57c130940bcf1f341..e2477220992d574b6d0ff4b154fbb0eb2c1b6bf8 100644 (file)
@@ -358,7 +358,7 @@ TEST(TCPSocket, sequenceTest) {
     EXPECT_EQ(TCPCallback::OPEN, client_cb.called());
 
     // On some operating system the async_connect may return EINPROGRESS.
-    // This doesn't neccessarily indicate an error. In most cases trying
+    // This doesn't necessarily indicate an error. In most cases trying
     // to asynchronously write and read from the socket would work just
     // fine.
     if ((client_cb.getCode()) != 0 && (client_cb.getCode() != EINPROGRESS)) {
index 4ccc0a51eb0ee2fe9c056993dd64dd0239c290bb..3b6aa025ce2823dabc8ebd424ccb195608a0ab74 100644 (file)
@@ -139,7 +139,7 @@ public:
                 // EINPROGRESS error code, but simply wait for the connection
                 // to get established before the handler is invoked. It turns out,
                 // however, that on some OSes the connect handler may receive this
-                // error code which doesn't neccessarily indicate a problem.
+                // error code which doesn't necessarily indicate a problem.
                 // Making an attempt to write and read from this socket will
                 // typically succeed. So, we ignore this error.
                 if (ec.value() != boost::asio::error::in_progress) {