diff options
author | obrien <obrien@FreeBSD.org> | 1999-08-04 15:02:28 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1999-08-04 15:02:28 +0000 |
commit | 7eaa3130e0cb66ac23ea50a9ed064eb483bb5473 (patch) | |
tree | ca227d9dbff4ad2d2c3f13dd32dcdaec20d1e986 /contrib | |
parent | fce0d9b321de631d62c079179ff70ecfd90a2356 (diff) | |
download | FreeBSD-src-7eaa3130e0cb66ac23ea50a9ed064eb483bb5473.zip FreeBSD-src-7eaa3130e0cb66ac23ea50a9ed064eb483bb5473.tar.gz |
Back out rev 1.2. The correct type of host-name is `X'. There was a problem
with options.c which was fixed in ISC's version 2.0 (rev 1.1.1.2 --> 1.1.1.3).
I have tested host-name with both types `X' and `t' and things work fine
either way. I would prefer to match the offical sources when easily possible.
PR: 12205
Submitted by: John Baldwin <jobaldwi@vt.edu>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/isc-dhcp/common/tables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/isc-dhcp/common/tables.c b/contrib/isc-dhcp/common/tables.c index b0e5739..9274e38 100644 --- a/contrib/isc-dhcp/common/tables.c +++ b/contrib/isc-dhcp/common/tables.c @@ -78,7 +78,7 @@ struct option dhcp_options [256] = { { "lpr-servers", "IA", &dhcp_universe, 9 }, { "impress-servers", "IA", &dhcp_universe, 10 }, { "resource-location-servers", "IA", &dhcp_universe, 11 }, - { "host-name", "t", &dhcp_universe, 12 }, + { "host-name", "X", &dhcp_universe, 12 }, { "boot-size", "S", &dhcp_universe, 13 }, { "merit-dump", "t", &dhcp_universe, 14 }, { "domain-name", "t", &dhcp_universe, 15 }, |