From: Josh Soref Date: Sun, 23 Jul 2017 20:42:36 +0000 (-0400) Subject: spelling: sigchld X-Git-Tag: trac5124a_base~35^2~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=11ac079f2250d8103228cf4d142e21d1129b49ea;p=thirdparty%2Fkea.git spelling: sigchld --- diff --git a/src/bin/dhcp4/dhcp4_srv.cc b/src/bin/dhcp4/dhcp4_srv.cc index ee76485f11..21948e3291 100644 --- a/src/bin/dhcp4/dhcp4_srv.cc +++ b/src/bin/dhcp4/dhcp4_srv.cc @@ -769,7 +769,7 @@ Dhcpv4Srv::run_one() { } catch (const SignalInterruptOnSelect) { // Packet reception interrupted because a signal has been received. // This is not an error because we might have received a SIGTERM, - // SIGINT, SIGHUP or SIGCHILD which are handled by the server. For + // SIGINT, SIGHUP or SIGCHLD which are handled by the server. For // signals that are not handled by the server we rely on the default // behavior of the system. LOG_DEBUG(packet4_logger, DBG_DHCP4_DETAIL, DHCP4_BUFFER_WAIT_SIGNAL) diff --git a/src/lib/util/tests/process_spawn_unittest.cc b/src/lib/util/tests/process_spawn_unittest.cc index 824196ce14..6035a2f606 100644 --- a/src/lib/util/tests/process_spawn_unittest.cc +++ b/src/lib/util/tests/process_spawn_unittest.cc @@ -239,7 +239,7 @@ TEST(ProcessSpawn, errnoInvariance) { EXPECT_EQ(64, process.getExitStatus(pid)); - // errno value should be set to be preserved, despite the SIGCHILD + // errno value should be set to be preserved, despite the SIGCHLD // handler (ProcessSpawnImpl::waitForProcess) calling waitpid(), which // will likely set errno to ECHILD. See trac4000. EXPECT_EQ(123, errno);