From 6a8c91fef33385cbd552a78061b75f1429f59542 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 12 Jul 1999 13:03:58 +0000 Subject: [PATCH] (extract_archive): Test whether S_IFCHR and S_IFBLK are nonzero, not whether they are defined, for consistency with other tests. --- src/extract.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.44.0