diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2005-07-16 16:31:47 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2005-07-16 16:31:47 +0000 |
commit | 1f87d46e34c80e9254b0a0083d47830d8e5ac864 (patch) | |
tree | e878639d131546bb8dbe46b2c677fbb473776baf | |
parent | e17a650b7d411420bfdb41a9aa9e00de8269da6d (diff) |
fix printing of hostname, from brooks davis via jmc
-rw-r--r-- | sbin/dhclient/tables.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/dhclient/tables.c b/sbin/dhclient/tables.c index 49e1a52cc2e..1e6ed0febb3 100644 --- a/sbin/dhclient/tables.c +++ b/sbin/dhclient/tables.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tables.c,v 1.10 2005/07/16 14:09:51 krw Exp $ */ +/* $OpenBSD: tables.c,v 1.11 2005/07/16 16:31:46 henning Exp $ */ /* Tables of information... */ @@ -73,7 +73,7 @@ const struct option dhcp_options[256] = { /* 9 */ { "lpr-servers", "IA" }, /* 10 */ { "impress-servers", "IA" }, /* 11 */ { "resource-location-servers", "IA" }, - /* 12 */ { "host-name", "X" }, + /* 12 */ { "host-name", "t" }, /* 13 */ { "boot-size", "S" }, /* 14 */ { "merit-dump", "t" }, /* 15 */ { "domain-name", "t" }, |