summaryrefslogtreecommitdiffstats
path: root/loader2/net.h
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2007-01-11 17:54:46 +0000
committerDavid Cantrell <dcantrell@redhat.com>2007-01-11 17:54:46 +0000
commit3fff3f951268b74e66948f43351944cd0988f0eb (patch)
tree1464fe84133c7497804ec00ed6f0c914d97709ec /loader2/net.h
parentfa1325619323d9eac8dac0af1f71b6e3f0ad28c9 (diff)
downloadanaconda-3fff3f951268b74e66948f43351944cd0988f0eb.tar.gz
anaconda-3fff3f951268b74e66948f43351944cd0988f0eb.tar.xz
anaconda-3fff3f951268b74e66948f43351944cd0988f0eb.zip
* ui/netpostconfig.glade: Note DHCP for IPv6 as 'DHCPv6'. Remove
'RFC 2461' from the text for the automatic neighbor discovery option. * loader/net.c (configureTCPIP): Use DHCPV6_METHOD_STR for the DHCP on IPv6 checkbox. * loader/net.h: Define DHCPV6_METHOD_STR. Remove 'RFC 2461' from the AUTO_METHOD_STR macro.
Diffstat (limited to 'loader2/net.h')
-rw-r--r--loader2/net.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/loader2/net.h b/loader2/net.h
index 410e70d47..506e2e210 100644
--- a/loader2/net.h
+++ b/loader2/net.h
@@ -8,8 +8,9 @@
#include <pump.h>
#define DHCP_METHOD_STR _("Dynamic IP configuration (DHCP)")
+#define DHCPV6_METHOD_STR _("Dynamic IP configuration (DHCPv6)")
#define MANUAL_METHOD_STR _("Manual configuration")
-#define AUTO_METHOD_STR _("Automatic neighbor discovery (RFC 2461)")
+#define AUTO_METHOD_STR _("Automatic neighbor discovery")
/* generic names for array index positions in net.c */
enum { IPV4, IPV6 };