aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bin/ls/print.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/bin/ls/print.c b/bin/ls/print.c
index 1cdbf4f4d1cf..fc9bf93f4b6f 100644
--- a/bin/ls/print.c
+++ b/bin/ls/print.c
@@ -59,7 +59,6 @@ static const char rcsid[] =
#ifdef COLORLS
#include <ctype.h>
#include <termcap.h>
-#include <term.h> /* for tparm */
#include <signal.h>
#endif
@@ -371,14 +370,14 @@ printcolor(c)
char *ansiseq;
if (colors[c][0] != -1) {
- ansiseq = tparm(ansi_fgcol, colors[c][0]);
- if (ansiseq)
+ ansiseq = tgoto(ansi_fgcol, 0, colors[c][0]);
+ if (ansiseq && *ansiseq != 'O') /* "OOPS" */
tputs(ansiseq, 1, putch);
}
if (colors[c][1] != -1) {
- ansiseq = tparm(ansi_bgcol, colors[c][1]);
- if (ansiseq)
+ ansiseq = tgoto(ansi_bgcol, 0, colors[c][1]);
+ if (ansiseq && *ansiseq != 'O') /* "OOPS" */
tputs(ansiseq, 1, putch);
}
}