If we ask "is any of these interfaces connected?" we want the answer to be

"yes", and abort if it is "no" - not vice versa.
XXX - when returning to the utilities menu loop, the menu message should
be output again, I think. I couldn't figure out how that is supposed to
be done though.
This commit is contained in:
martin 2006-09-29 09:56:04 +00:00
parent 109baa1a34
commit 3da83175e0

View File

@ -1,4 +1,4 @@
/* $NetBSD: net.c,v 1.110 2006/08/19 21:18:40 martin Exp $ */
/* $NetBSD: net.c,v 1.111 2006/09/29 09:56:04 martin Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@ -516,8 +516,8 @@ config_network(void)
/* active interfaces found */
msg_display(MSG_netup, net_up);
process_menu(MENU_yesno, NULL);
if (yesno)
return 1;
if (!yesno)
return 0;
}
if (net_devices == NULL) {