diff options
author | David Hankins <dhankins@isc.org> | 2009-12-17 20:05:43 +0000 |
---|---|---|
committer | David Hankins <dhankins@isc.org> | 2009-12-17 20:05:43 +0000 |
commit | bd3e6221b9718aaf14a551fa33d1487f44288081 (patch) | |
tree | 227988daf6a8afbe008021d3909fcbbd526543ea | |
parent | 1aaff8add2aa2c6e28624d449fc86d969fec7817 (diff) | |
download | isc-dhcp-bd3e6221b9718aaf14a551fa33d1487f44288081.tar.gz |
- When using 'ignore client-updates;', the FQDN returned to the client
is no longer truncated to one octet. [ISC-Bugs #20743]
-rw-r--r-- | RELNOTES | 5 | ||||
-rw-r--r-- | server/ddns.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -48,6 +48,11 @@ work on other platforms. Please report any problems and suggested fixes to <dhcp-users@isc.org>. + Changes since 4.1.1rc1 + +- When using 'ignore client-updates;', the FQDN returned to the client + is no longer truncated to one octet. + Changes since 4.1.1b3 - None. diff --git a/server/ddns.c b/server/ddns.c index 7e639220..2afdd5d6 100644 --- a/server/ddns.c +++ b/server/ddns.c @@ -723,7 +723,7 @@ ddns_updates(struct packet *packet, struct lease *lease, struct lease *old, */ memcpy(&bp->data[5], d1.data, d1.len); if (!save_option_buffer(&fqdn_universe, options, - bp, &bp->data[5], 1, + bp, &bp->data[5], d1.len, FQDN_FQDN, 0)) goto badfqdn; |