From owner-freebsd-bugs Sat Mar 29 00:30:02 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA16073 for bugs-outgoing; Sat, 29 Mar 1997 00:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA16067; Sat, 29 Mar 1997 00:30:01 -0800 (PST) Date: Sat, 29 Mar 1997 00:30:01 -0800 (PST) Message-Id: <199703290830.AAA16067@freefall.freebsd.org> To: freebsd-bugs Cc: From: "Kenneth R. Westerback" Subject: misc/3105 - patch to fix/close Reply-To: "Kenneth R. Westerback" Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/3105; it has been noted by GNATS. From: "Kenneth R. Westerback" To: freebsd-bugs@freefall.freebsd.org Cc: Subject: misc/3105 - patch to fix/close Date: Fri, 28 Mar 1997 18:50:01 -0800 (PST) The following reply was made to PR misc/3105; it has been noted by GNATS. From: "Kenneth R. Westerback" To: freebsd-gnats-submit@freebsd.org Cc: Subject: misc/3105 - patch to fix/close Date: Fri, 28 Mar 1997 21:50:39 -0500 (EST) The problem is not in sysinstall it is in /usr/src/gnu/lib/libdialog/msgbox.c and here is the patch: *** msgbox.c Tue Mar 18 08:06:49 1997 --- msgbox.c.NEW Fri Mar 28 17:13:58 1997 *************** *** 180,186 **** max_lines = getnlines(prompt); print_page(dialog, theight, width, prompt, startline, hscroll); print_perc(dialog, height-3, width-9, (float) (startline+theight)/max_lines); ! wmove(dialog, height-2, width/2-6); wrefresh(dialog); while ((key != ESC) && (key != '\n') && (key != '\r')) { key = wgetch(dialog); --- 180,186 ---- max_lines = getnlines(prompt); print_page(dialog, theight, width, prompt, startline, hscroll); print_perc(dialog, height-3, width-9, (float) (startline+theight)/max_lines); ! wmove(dialog, height-2, width/2-3); wrefresh(dialog); while ((key != ESC) && (key != '\n') && (key != '\r')) { key = wgetch(dialog); *************** *** 230,236 **** } print_page(dialog, theight, width, prompt, startline, hscroll); print_perc(dialog, height-3, width-9, (float) (startline+theight)/max_lines); ! wmove(dialog, height-2, width/2-2); wrefresh(dialog); } --- 230,236 ---- } print_page(dialog, theight, width, prompt, startline, hscroll); print_perc(dialog, height-3, width-9, (float) (startline+theight)/max_lines); ! wmove(dialog, height-2, width/2-3); wrefresh(dialog); }