summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall/dmenu.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1996-07-11 18:37:48 +0000
committerjkh <jkh@FreeBSD.org>1996-07-11 18:37:48 +0000
commit159fef6094ae74752819a66e1c6321c4827581e2 (patch)
tree94d6ec3128023d022b2f53805930ab62fb467c7a /usr.sbin/sysinstall/dmenu.c
parentd79c848b1509a3db3c92795bb2d684060926908f (diff)
downloadFreeBSD-src-159fef6094ae74752819a66e1c6321c4827581e2.zip
FreeBSD-src-159fef6094ae74752819a66e1c6321c4827581e2.tar.gz
Make the menu height calculation actually work.
Make a menu more self-explanatory at user request.
Diffstat (limited to 'usr.sbin/sysinstall/dmenu.c')
-rw-r--r--usr.sbin/sysinstall/dmenu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/dmenu.c b/usr.sbin/sysinstall/dmenu.c
index bb679a9..89f2edd 100644
--- a/usr.sbin/sysinstall/dmenu.c
+++ b/usr.sbin/sysinstall/dmenu.c
@@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next
* generation being slated for what's essentially a complete rewrite.
*
- * $Id: dmenu.c,v 1.21 1996/07/02 01:03:39 jkh Exp $
+ * $Id: dmenu.c,v 1.22 1996/07/05 08:35:53 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -171,7 +171,7 @@ menu_height(DMenu *menu, int n)
int max;
char *t;
- for (t = menu->title, max = MAX_MENU; *t; t++) {
+ for (t = menu->prompt, max = MAX_MENU; *t; t++) {
if (*t == '\n')
--max;
}
OpenPOWER on IntegriCloud