diff options
author | Lauri Kasanen <curaga@operamail.com> | 2011-01-31 06:27:35 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-01-31 06:27:35 +0100 |
commit | 55ae0e9238e1979f0200700ec5dbd0df8d32f7a2 (patch) | |
tree | a84f49f35110aff62102c808cb983f6fb7bde10f /libbb/find_mount_point.c | |
parent | 625cfd87d9282c9698a02cd6acd870ee0baee407 (diff) | |
download | busybox-w32-55ae0e9238e1979f0200700ec5dbd0df8d32f7a2.tar.gz busybox-w32-55ae0e9238e1979f0200700ec5dbd0df8d32f7a2.tar.bz2 busybox-w32-55ae0e9238e1979f0200700ec5dbd0df8d32f7a2.zip |
df,find_mount_point: optionally don't ignore rootfs
Signed-off-by: Lauri Kasanen <curaga@operamail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/find_mount_point.c')
-rw-r--r-- | libbb/find_mount_point.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/find_mount_point.c b/libbb/find_mount_point.c index 361698a6b..56637ad92 100644 --- a/libbb/find_mount_point.c +++ b/libbb/find_mount_point.c | |||
@@ -43,7 +43,7 @@ struct mntent* FAST_FUNC find_mount_point(const char *name, int subdir_too) | |||
43 | /* rootfs mount in Linux 2.6 exists always, | 43 | /* rootfs mount in Linux 2.6 exists always, |
44 | * and it makes sense to always ignore it. | 44 | * and it makes sense to always ignore it. |
45 | * Otherwise people can't reference their "real" root! */ | 45 | * Otherwise people can't reference their "real" root! */ |
46 | if (strcmp(mountEntry->mnt_fsname, "rootfs") == 0) | 46 | if (ENABLE_FEATURE_SKIP_ROOTFS && strcmp(mountEntry->mnt_fsname, "rootfs") == 0) |
47 | continue; | 47 | continue; |
48 | 48 | ||
49 | if (strcmp(name, mountEntry->mnt_dir) == 0 | 49 | if (strcmp(name, mountEntry->mnt_dir) == 0 |