aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2001-05-10 17:14:29 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2001-05-10 17:14:29 +0000
commit9caf9467e0842c1e4a57203a92d968954c7dc0a9 (patch)
treeb3df99027fe138a002cc590a91b0ce5eda37ef09
parente95f7451f813710bc20aa6504720f234a7c8846f (diff)
Notes
-rw-r--r--usr.sbin/sade/termcap.c6
-rw-r--r--usr.sbin/sysinstall/termcap.c6
2 files changed, 8 insertions, 4 deletions
diff --git a/usr.sbin/sade/termcap.c b/usr.sbin/sade/termcap.c
index 78a78d6410b1..b63cf3654d1c 100644
--- a/usr.sbin/sade/termcap.c
+++ b/usr.sbin/sade/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) {
diff --git a/usr.sbin/sysinstall/termcap.c b/usr.sbin/sysinstall/termcap.c
index 78a78d6410b1..b63cf3654d1c 100644
--- a/usr.sbin/sysinstall/termcap.c
+++ b/usr.sbin/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) {