(extract_archive): Test whether S_IFCHR and S_IFBLK are nonzero,

not whether they are defined, for consistency with other tests.
This commit is contained in:
Paul Eggert
1999-07-12 13:03:58 +00:00
parent 2016526b1a
commit 6a8c91fef3

View File

@@ -784,7 +784,7 @@ Attempting extraction of symbolic links as hard links")));
current_stat.st_mode |= S_IFBLK;
#endif
#if defined(S_IFCHR) || defined(S_IFBLK)
#if S_IFCHR || S_IFBLK
make_node:
if (to_stdout_option)
break;