diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2002-07-02 22:35:25 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2002-07-02 22:35:25 +0000 |
| commit | 20e7a77d1ed8c83a054e7c615d8da3bd47aadc94 (patch) | |
| tree | 2ec31e02472584a02f6cc2fec9a73553937ccae7 | |
| parent | cbec8f2e3654a30bb932b45cb2885914c4546b45 (diff) | |
Notes
| -rw-r--r-- | release/sysinstall/termcap.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/release/sysinstall/termcap.c b/release/sysinstall/termcap.c index 8732c6e05c2b..1e878c1750b1 100644 --- a/release/sysinstall/termcap.c +++ b/release/sysinstall/termcap.c @@ -9,6 +9,8 @@ * circumstances is the author responsible for the proper functioning of this * software, nor does the author assume any responsibility for damages * incurred with its use. + * + * $FreeBSD$ */ #include "sysinstall.h" @@ -29,10 +31,10 @@ prompt_term(char **termp, char **termcapp) const char *term, *termcap; } lookup[] = { { "ansi", termcap_ansi }, { "vt100", termcap_vt100 }, - { "cons25w", termcap_cons25w }, { "cons25", termcap_cons25 }, { "cons25-m", termcap_cons25_m }, - { "xterm", termcap_xterm } }; + { "xterm", termcap_xterm }, + { "cons25w", termcap_cons25w } }; /* must be last */ if (RunningAsInit) { while (1) { |
