summaryrefslogtreecommitdiffstats
path: root/bin/ls/print.c
diff options
context:
space:
mode:
authortjr <tjr@FreeBSD.org>2002-11-06 01:18:12 +0000
committertjr <tjr@FreeBSD.org>2002-11-06 01:18:12 +0000
commit4fe3b11a8cb74d310f159c10d23bbd9110f2f7a2 (patch)
tree70cbdb64f034ded5fb88c653a9dbe203f981a3c2 /bin/ls/print.c
parenta6bb79953f7e076e2de299b995d3e07098d6c582 (diff)
downloadFreeBSD-src-4fe3b11a8cb74d310f159c10d23bbd9110f2f7a2.zip
FreeBSD-src-4fe3b11a8cb74d310f159c10d23bbd9110f2f7a2.tar.gz
Use warn() instead of perror() or fprintf() where appropriate.
Diffstat (limited to 'bin/ls/print.c')
-rw-r--r--bin/ls/print.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/bin/ls/print.c b/bin/ls/print.c
index c09e1d6..841270b 100644
--- a/bin/ls/print.c
+++ b/bin/ls/print.c
@@ -558,10 +558,9 @@ parsecolors(const char *cs)
if (c[j] >= '0' && c[j] <= '7') {
colors[i].num[j] = c[j] - '0';
if (!legacy_warn) {
- fprintf(stderr,
- "warn: LSCOLORS should use "
+ warnx("LSCOLORS should use "
"characters a-h instead of 0-9 ("
- "see the manual page)\n");
+ "see the manual page)");
}
legacy_warn = 1;
} else if (c[j] >= 'a' && c[j] <= 'h')
@@ -572,9 +571,8 @@ parsecolors(const char *cs)
} else if (tolower((unsigned char)c[j] == 'x'))
colors[i].num[j] = -1;
else {
- fprintf(stderr,
- "error: invalid character '%c' in LSCOLORS"
- " env var\n", c[j]);
+ warnx("invalid character '%c' in LSCOLORS"
+ " env var", c[j]);
colors[i].num[j] = -1;
}
}
OpenPOWER on IntegriCloud