diff options
author | 2005-07-16 16:31:46 +0000 | |
---|---|---|
committer | 2005-07-16 16:31:46 +0000 | |
commit | f7600b3fec224128ef185e1a342d8434a13b362f (patch) | |
tree | e49463766edb7a2c79fb0fd88303252f3ea92df7 | |
parent | back out last; breaks in cases where we want hex and the last byte is 0 (diff) | |
download | wireguard-openbsd-f7600b3fec224128ef185e1a342d8434a13b362f.tar.xz wireguard-openbsd-f7600b3fec224128ef185e1a342d8434a13b362f.zip |
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" }, |