summaryrefslogtreecommitdiff
path: root/lib/libterm
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-12-03 08:25:27 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-12-03 08:25:27 +0000
commitd20c92a38b31a2bf54b577aafe3590b2ed3eb0b3 (patch)
treee02650acd2d057d47401c509fee044827715e06b /lib/libterm
parent9d0badad9cdf5d148264dfc9d4291c93efe231cb (diff)
/usr/share/misc/termcap
Diffstat (limited to 'lib/libterm')
-rw-r--r--lib/libterm/termcap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libterm/termcap.c b/lib/libterm/termcap.c
index 391963045e7..64ddb756130 100644
--- a/lib/libterm/termcap.c
+++ b/lib/libterm/termcap.c
@@ -91,14 +91,14 @@ tgetent(bp, name)
p = pathbuf;
cp = getenv("TERMCAP");
/*
- * TERMCAP can have one of two things in it. It can be the
- * name of a file to use instead of /etc/termcap. In this
+ * TERMCAP can have one of two things in it. It can be the name
+ * of a file to use instead of /usr/share/misc/termcap. In this
* case it better start with a "/". Or it can be an entry to
* use so we don't have to read the file. In this case it
* has to already have the newlines crunched out. If TERMCAP
* does not hold a file name then a path of names is searched
- * instead. The path is found in the TERMPATH variable, or
- * becomes "$HOME/.termcap /etc/termcap" if no TERMPATH exists.
+ * instead. The path is found in the TERMPATH variable, or becomes
+ * "$HOME/.termcap /usr/share/misc/termcap" if no TERMPATH exists.
*/
if (!cp || *cp != '/') { /* no TERMCAP or it holds an entry */
if ((termpath = getenv("TERMPATH")) != NULL)