aboutsummaryrefslogtreecommitdiff
path: root/coreutils/df.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/df.c')
-rw-r--r--coreutils/df.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/df.c b/coreutils/df.c
index af9b77b23..70fd1f4fd 100644
--- a/coreutils/df.c
+++ b/coreutils/df.c
@@ -160,7 +160,7 @@ int df_main(int argc UNUSED_PARAM, char **argv)
160 } 160 }
161 161
162 /* GNU coreutils 6.10 skips certain mounts, try to be compatible. */ 162 /* GNU coreutils 6.10 skips certain mounts, try to be compatible. */
163 if (strcmp(device, "rootfs") == 0) 163 if (ENABLE_FEATURE_SKIP_ROOTFS && strcmp(device, "rootfs") == 0)
164 continue; 164 continue;
165 165
166#ifdef WHY_WE_DO_IT_FOR_DEV_ROOT_ONLY 166#ifdef WHY_WE_DO_IT_FOR_DEV_ROOT_ONLY