svn commit: r215384 - stable/7/usr.sbin/sysinstall

Bruce Cran brucec at FreeBSD.org
Tue Nov 16 07:35:30 UTC 2010


Author: brucec
Date: Tue Nov 16 07:35:29 2010
New Revision: 215384
URL: http://svn.freebsd.org/changeset/base/215384

Log:
  MFC r213763:
  
  Use the RFC2606 domain example.com in examples.

Modified:
  stable/7/usr.sbin/sysinstall/tcpip.c
Directory Properties:
  stable/7/usr.sbin/sysinstall/   (props changed)

Modified: stable/7/usr.sbin/sysinstall/tcpip.c
==============================================================================
--- stable/7/usr.sbin/sysinstall/tcpip.c	Tue Nov 16 07:33:53 2010	(r215383)
+++ stable/7/usr.sbin/sysinstall/tcpip.c	Tue Nov 16 07:35:29 2010	(r215384)
@@ -65,12 +65,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,


More information about the svn-src-all mailing list