summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bin/dd/dd.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/dd/dd.c b/bin/dd/dd.c
index 49fd7be..97613f5 100644
--- a/bin/dd/dd.c
+++ b/bin/dd/dd.c
@@ -214,9 +214,7 @@ getfdtype(io)
err(1, "%s", io->name);
if (S_ISCHR(sb.st_mode) || S_ISBLK(sb.st_mode)) {
if (ioctl(io->fd, FIODTYPE, &type) == -1) {
- warn("%s", io->name);
- if (S_ISCHR(sb.st_mode))
- io->flags |= ISCHR;
+ err(1, "%s", io->name);
} else {
if (type & D_TAPE)
io->flags |= ISTAPE;
OpenPOWER on IntegriCloud