aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSUZUKI, Shinsuke <suz@kame.net>2006-09-20 08:12:53 +0000
committerSUZUKI, Shinsuke <suz@kame.net>2006-09-20 08:12:53 +0000
commit81526f52fbb283342b60008449400fb47f110ec1 (patch)
tree3c346b058d2f0e645272cfa6d54535e35f19f067
parent65e26692dadf763a3d5212ae3c21030092264534 (diff)
fixed a bug that dhcp6s inserts SIP server addresses into DNS server address option
(Bug-ID 1561202)
-rw-r--r--CHANGES4
-rw-r--r--common.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 4fc7593..5f43eef 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,7 @@
+2006-09-20 SUZUKI, Shinsuke <suz@kame.net>
+ * common.c: fixed a bug that dhcp6s inserts SIP server addresses into
+ DNS server address option (Bug-ID 1561202). (degrade from 2006-07-30)
+
2006-09-20 STEVANT, Bruno <bruno.stevant@enst-bretagne.fr>
* lease.c: Fix a memory violation in lease management.
diff --git a/common.c b/common.c
index 2040b02..80d3095 100644
--- a/common.c
+++ b/common.c
@@ -2222,7 +2222,7 @@ dhcp6_set_options(type, optbp, optep, optinfo)
&p, optep, &len) != 0)
goto fail;
- if (dhcp6_set_addr(DH6OPT_DNS, &optinfo->sip_list,
+ if (dhcp6_set_addr(DH6OPT_DNS, &optinfo->dns_list,
&p, optep, &len) != 0)
goto fail;