summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2000-07-26 06:47:56 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2000-07-26 06:47:56 +0000
commit4e962c3513d00a53ba219a9e9908727b00f12542 (patch)
tree6ae8cf71a3e5394e699bd093b45169a8029b9cbf
parent7b1fc5e6e76d70d973b7871c341023a8a1913803 (diff)
Notes
-rw-r--r--release/sysinstall/termcap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/sysinstall/termcap.c b/release/sysinstall/termcap.c
index 93701776251f..edac12e0f38c 100644
--- a/release/sysinstall/termcap.c
+++ b/release/sysinstall/termcap.c
@@ -50,7 +50,7 @@ prompt_term(char **termp, char **termcapp)
fflush(stdout);
fgets(str, 80, stdin);
i = str[0] - '0';
- if (i > 0 && i < 5) {
+ if (i > 0 && i < 6) {
*termp = (char *)lookup[i - 1].term;
*termcapp = (char *)lookup[i - 1].termcap;
break;