aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSUZUKI, Shinsuke <suz@kame.net>2007-03-20 18:43:56 +0000
committerBjørn Mork <bjorn@mork.no>2010-08-06 15:37:36 +0200
commitbb3239acbdae547fdc29b5b6337ed58224bc85d7 (patch)
tree2ea9ce652613acedbb256efed1bc733405cb80a1
parentfc15adcff189d5fb96a9802307f8b82866e12ac7 (diff)
fixed a bug that IA-PD/IA-NA cannot coexist in one DHCP message when they have the same IA-ID.
-rw-r--r--CHANGES7
-rw-r--r--common.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index e97da44..e4b56f6 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,10 @@
+2007-03-20 SUZUKI, Shinsuke <suz@kame.net>
+ * common.c: fixed a bug that IA-PD/IA-NA cannot coexist in one DHCP message
+ when they have the same IA-ID.
+
+2007-02-28 SUZUKI, Shinsuke <suz@kame.net>
+ * config.c: fixed a typo.
+
2007-02-27 SUZUKI, Shinsuke <suz@kame.net>
* dhcp6relay.c, dhcp6relay_script.c, common.[ch], dhcp6c_script.c,
Makefile.in, dhcp6relay.8:
diff --git a/common.c b/common.c
index 6c1c621..8a41efd 100644
--- a/common.c
+++ b/common.c
@@ -1847,7 +1847,7 @@ dhcp6_get_options(p, ep, optinfo)
ia.iaid, ia.t1, ia.t2);
/* duplication check */
- if (dhcp6_find_listval(&optinfo->iapd_list,
+ if (dhcp6_find_listval(&optinfo->iana_list,
DHCP6_LISTVAL_IANA, &ia, 0)) {
dprintf(LOG_INFO, FNAME,
"duplicated IA_NA %lu", ia.iaid);