From 9cc5846ff7dde57b7c644dbd923a21ed3fc8c874 Mon Sep 17 00:00:00 2001 From: roy Date: Sat, 13 Sep 2014 09:38:43 +0000 Subject: [PATCH] Show the IP6 address instead of yes --- usr.sbin/sysinst/net.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/usr.sbin/sysinst/net.c b/usr.sbin/sysinst/net.c index 050f3c0fe364..1cd071d9a119 100644 --- a/usr.sbin/sysinst/net.c +++ b/usr.sbin/sysinst/net.c @@ -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' ? "" : net_defroute); #ifdef INET6 msg_display_add(MSG_netokv6, - !is_v6kernel() ? "" : - (v6config ? "yes" : "no")); + !is_v6kernel() ? "" : net_ip6); #endif done: process_menu(MENU_yesno, deconst(MSG_netok_ok));