]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
spelling: service
authorJosh Soref <jsoref@users.noreply.github.com>
Sun, 23 Jul 2017 20:26:52 +0000 (16:26 -0400)
committerJosh Soref <jsoref@users.noreply.github.com>
Sun, 23 Jul 2017 20:26:52 +0000 (16:26 -0400)
doc/guide/shell.xml
src/lib/process/io_service_signal.cc
src/lib/process/libprocess.dox

index c8632735b02f42ad95e95f1177c5d34b9e27ee23..4490fb6233b151bce4d4cbf3fd9740a72d62f78f 100644 (file)
@@ -53,7 +53,7 @@ kea-shell [--host hostname] [--port number] [--timeout seconds] [--service servi
 
       <listitem>
         <simpara>
-          <command>--service <replaceable>serive-name</replaceable></command> specifies the
+          <command>--service <replaceable>service-name</replaceable></command> specifies the
           target of a command. If not given, CA will be used as target.  May be used more
           than once to specify multiple targets.
         </simpara>
index 29e3b0cb0e7aecafb66d41ed8fe41a98f8e54d27..e8416e4dbe4c58aaddbee5bbcbf18e23a86cc02e 100644 (file)
@@ -60,7 +60,7 @@ IOSignal::TimerCallback::operator()() {
 IOSignalQueue::IOSignalQueue(asiolink::IOServicePtr& io_service)
     : io_service_(io_service), signals_() {
     if (!io_service_) {
-        isc_throw(IOSignalError, "IOSignalQueue - io_serivce cannot be NULL");
+        isc_throw(IOSignalError, "IOSignalQueue - io_service cannot be NULL");
     }
 }
 
index 66efcf9cfadad027e954e18097012e807abec311..c2167df2fcda27004195618c78f0e7533d6c1648 100644 (file)
@@ -103,7 +103,7 @@ isc::asiolink::IOService::run() or its variants.  These calls are not
 interrupted upon signal receipt as is the select() function and while
 boost::asio provides a signal mechanism it requires linking in additional
 libraries.  Therefore, CPL provides its own signal handling mechanism to
-propagate an OS signal such as SIGHUP to an IOSerivce as a ready event with a
+propagate an OS signal such as SIGHUP to an IOService as a ready event with a
 callback.
 
 isc::process::DControllerBase uses two mechanisms to carry out signal handling.  It