From e665fee23a1e8faaacaceda94ce45295956dee10 Mon Sep 17 00:00:00 2001 From: jkh Date: Tue, 23 Apr 1996 01:29:35 +0000 Subject: Bring this into sync. I still have a _very very annoying_ display bug which occurs when a menu item causes a submenu to be displayed - the screen repaints for the original menu (which is restored upon return from the submenu) are off by about 4 characters. I've tried restoring the screen, the cursor position, you name it - same deal. Grrrr! This commit is my first step in trying to get someone else to help me look into this one since I'm just tearing my hair out at this point! --- release/sysinstall/devices.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'release/sysinstall/devices.c') diff --git a/release/sysinstall/devices.c b/release/sysinstall/devices.c index f3f615f..b64c736 100644 --- a/release/sysinstall/devices.c +++ b/release/sysinstall/devices.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: devices.c,v 1.43 1996/04/07 03:52:19 jkh Exp $ + * $Id: devices.c,v 1.44 1996/04/13 13:31:27 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -279,12 +279,10 @@ deviceGetAll(void) s = socket(AF_INET, SOCK_DGRAM, 0); if (s < 0) { - dialog_clear(); msgConfirm("ifconfig: socket"); return; } if (ioctl(s, SIOCGIFCONF, (char *) &ifc) < 0) { - dialog_clear(); msgConfirm("ifconfig (SIOCGIFCONF)"); return; } @@ -303,7 +301,6 @@ deviceGetAll(void) msgDebug("Found a device of type network named: %s\n", ifptr->ifr_name); close(s); if ((s = socket(AF_INET, SOCK_DGRAM, 0)) < 0) { - dialog_clear(); msgConfirm("ifconfig: socket"); continue; } -- cgit v1.1