From: Paul Eggert Date: Mon, 12 Jul 1999 13:03:58 +0000 (+0000) Subject: (extract_archive): Test whether S_IFCHR and S_IFBLK are nonzero, X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=6a8c91fef33385cbd552a78061b75f1429f59542;p=chaz%2Ftar (extract_archive): Test whether S_IFCHR and S_IFBLK are nonzero, not whether they are defined, for consistency with other tests. --- diff --git a/src/extract.c b/src/extract.c index 8d6944e..ffb4c33 100644 --- a/src/extract.c +++ b/src/extract.c @@ -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;