From cd6cd0993975c6b13cf58becbd327bef61b1d1a7 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Wed, 4 Aug 1999 15:02:28 +0000 Subject: [PATCH] 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 --- contrib/isc-dhcp/common/tables.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/isc-dhcp/common/tables.c b/contrib/isc-dhcp/common/tables.c index b0e5739d96e9..9274e38f5ce3 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 },