diff options
author | brucec <brucec@FreeBSD.org> | 2010-10-13 09:33:26 +0000 |
---|---|---|
committer | brucec <brucec@FreeBSD.org> | 2010-10-13 09:33:26 +0000 |
commit | 6f08b573dac365347c741dcb7388e9e85a29131f (patch) | |
tree | 26e2ea9a7e7fc22d7e39693d04e0447ab15035c5 | |
parent | f77a32bd1874acc2dae79c731d8f805cb7de5715 (diff) | |
download | FreeBSD-src-6f08b573dac365347c741dcb7388e9e85a29131f.zip FreeBSD-src-6f08b573dac365347c741dcb7388e9e85a29131f.tar.gz |
Use the RFC2606 domain example.com in examples.
-rw-r--r-- | usr.sbin/sysinstall/tcpip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/tcpip.c b/usr.sbin/sysinstall/tcpip.c index a795d05..121a5c5 100644 --- a/usr.sbin/sysinstall/tcpip.c +++ b/usr.sbin/sysinstall/tcpip.c @@ -72,12 +72,12 @@ static char ipv6addr[INET6_ADDRSTRLEN]; static Layout layout[] = { #define LAYOUT_HOSTNAME 0 { 1, 2, 25, HOSTNAME_FIELD_LEN - 1, - "Host:", "Your fully-qualified hostname, e.g. foo.bar.com", + "Host:", "Your fully-qualified hostname, e.g. foo.example.com", hostname, STRINGOBJ, NULL }, #define LAYOUT_DOMAINNAME 1 { 1, 35, 20, HOSTNAME_FIELD_LEN - 1, "Domain:", - "The name of the domain that your machine is in, e.g. bar.com", + "The name of the domain that your machine is in, e.g. example.com", domainname, STRINGOBJ, NULL }, #define LAYOUT_GATEWAY 2 { 5, 2, 18, IPADDR_FIELD_LEN - 1, |