Module Name: src
Committed By: roy
Date: Sat Sep 13 09:38:43 UTC 2014
Modified Files:
src/usr.sbin/sysinst: net.c
Log Message:
Show the IP6 address instead of yes
To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/usr.sbin/sysinst/net.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/sysinst/net.c
diff -u src/usr.sbin/sysinst/net.c:1.12 src/usr.sbin/sysinst/net.c:1.13
--- src/usr.sbin/sysinst/net.c:1.12 Sat Sep 13 09:30:30 2014
+++ src/usr.sbin/sysinst/net.c Sat Sep 13 09:38:43 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: net.c,v 1.12 2014/09/13 09:30:30 roy Exp $ */
+/* $NetBSD: net.c,v 1.13 2014/09/13 09:38:43 roy Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@@ -747,8 +747,7 @@ again:
*net_defroute == '\0' ? "<none>" : net_defroute);
#ifdef INET6
msg_display_add(MSG_netokv6,
- !is_v6kernel() ? "<not supported>" :
- (v6config ? "yes" : "no"));
+ !is_v6kernel() ? "<not supported>" : net_ip6);
#endif
done:
process_menu(MENU_yesno, deconst(MSG_netok_ok));