summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1996-10-09 19:13:52 +0000
committerMiles Bader <miles@gnu.org>1996-10-09 19:13:52 +0000
commitd03b1e9fac1bf93948c9cf5b3662a6f65e6255d0 (patch)
treed474b928c3d6f7bbda396b0182906d6651f1b2e8
parente822431a837def63254f0cf331edb0fb4ed27490 (diff)
(print_store): Properly ignore STORE_INACTIVE.
-rw-r--r--utils/storeinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/storeinfo.c b/utils/storeinfo.c
index 0486f179..46ad1624 100644
--- a/utils/storeinfo.c
+++ b/utils/storeinfo.c
@@ -117,7 +117,7 @@ print_store (struct store *store, int level, unsigned what)
pstr (store->class->name,W_TYPE);
- if (store->flags && (what & W_FLAGS))
+ if ((store->flags & ~STORE_INACTIVE) && (what & W_FLAGS))
{
int t = 0; /* flags tested */
int f = 1;