aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSUZUKI, Shinsuke <suz@kame.net>2007-03-23 07:21:14 +0000
committerBjørn Mork <bjorn@mork.no>2010-08-06 15:37:36 +0200
commit6a594cacbd21674f5344b5369abcd0b2f1e0ec41 (patch)
tree450cb0adb36ebfa5c608c3967bc10e6cbe5fa752
parent58a239ae46041ee89b2ee78a1d9731a70389d257 (diff)
in signal-receiving procedure, not uses a function that is not always designed to be signal-safe (Bug-ID 1678874)
-rw-r--r--CHANGES5
-rw-r--r--dhcp6c.c2
-rw-r--r--dhcp6relay.c2
3 files changed, 5 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 488786b..0848f57 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,8 @@
+2007-03-23 SUZUKI, Shinsuke <suz@kame.net>
+ * dhcp6relay.c,dhcp6.c: in signal-receiving procedure, not uses
+ a function that is not always designed to be signal-safe
+ (Bug-ID 1678874)
+
2007-03-21 SUZUKI, Shinsuke <suz@kame.net>
fixed several bugs found in IPv6-Ready-Logo DHCPv6 Self-Test script.
* dhcp6s.c, config.h, if.c: implemented DHCPv6 Confirm message processing
diff --git a/dhcp6c.c b/dhcp6c.c
index df4643f..7731ba7 100644
--- a/dhcp6c.c
+++ b/dhcp6c.c
@@ -1133,8 +1133,6 @@ client6_signal(sig)
int sig;
{
- dprintf(LOG_INFO, FNAME, "received a signal (%d)", sig);
-
switch (sig) {
case SIGTERM:
sig_flags |= SIGF_TERM;
diff --git a/dhcp6relay.c b/dhcp6relay.c
index c06db45..b282115 100644
--- a/dhcp6relay.c
+++ b/dhcp6relay.c
@@ -526,8 +526,6 @@ relay6_signal(sig)
int sig;
{
- dprintf(LOG_INFO, FNAME, "received a signal (%d)", sig);
-
switch (sig) {
case SIGTERM:
sig_flags |= SIGF_TERM;