Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tar.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-11-13 07:47:09 +0300
committerEric Andersen <andersen@codepoet.org>1999-11-13 07:47:09 +0300
commitb6a44b8d39b7834ab9f6c43938f4b58f135e846e (patch)
treed9bd903d4e30ea4faf1977a514853c5aac83690c /tar.c
parenteded54bd96ed0394844f9ba23c5ab54dff8a917f (diff)
updates for the day
Diffstat (limited to 'tar.c')
-rw-r--r--tar.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tar.c b/tar.c
index 5478af86e..1fdbf8c1c 100644
--- a/tar.c
+++ b/tar.c
@@ -559,6 +559,7 @@ readHeader (const TarHeader * hp, int fileCount, char **fileTable)
outFd = mknod (name, mode, makedev(major, minor) );
}
else if (S_ISFIFO(mode) ) {
+ devFileFlag = TRUE;
outFd = mkfifo(name, mode);
} else {
outFd = open (name, O_WRONLY | O_CREAT | O_TRUNC, mode);