diff options
author | jkim <jkim@FreeBSD.org> | 2006-04-14 18:18:43 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2006-04-14 18:18:43 +0000 |
commit | 884f5cd475af9cb681c3b468e5f0aceb91f4a30b (patch) | |
tree | 5d4b09ab5fde52ae32d3877bdbf4287ce30f9975 /usr.sbin/sysinstall | |
parent | 4997b369b97d3ea57fe417aa4c0ea30e24ef3d90 (diff) | |
download | FreeBSD-src-884f5cd475af9cb681c3b468e5f0aceb91f4a30b.zip FreeBSD-src-884f5cd475af9cb681c3b468e5f0aceb91f4a30b.tar.gz |
Fix minimal installation check. 'X' was not displayed when it was selected.
Reported by: Ian J. Hart <ianjhart at ntlworld dot com>
Pieter de Goeje <pieter at degoeje dot nl>
Diffstat (limited to 'usr.sbin/sysinstall')
-rw-r--r-- | usr.sbin/sysinstall/menus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/menus.c b/usr.sbin/sysinstall/menus.c index 6147313..308ca76 100644 --- a/usr.sbin/sysinstall/menus.c +++ b/usr.sbin/sysinstall/menus.c @@ -168,7 +168,7 @@ checkDistXUser(dialogMenuItem *self) static int checkDistMinimum(dialogMenuItem *self) { - return Dists == (DIST_BASE); + return Dists == (DIST_BASE | DIST_KERNEL); } static int |