From b953134bbaf9490c26f128fa7e2799f4b8239672 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 30 Jul 2005 08:48:10 +0000 Subject: apgo in Bug 322 writes: kill off CONFIG_FEATURE_MTAB_FILENAME --- libbb/mtab_file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libbb/mtab_file.c b/libbb/mtab_file.c index 42504e8..abb9b93 100644 --- a/libbb/mtab_file.c +++ b/libbb/mtab_file.c @@ -25,8 +25,8 @@ /* Busybox mount uses either /proc/mounts or /etc/mtab to * get the list of currently mounted filesystems */ -#if defined CONFIG_FEATURE_MTAB_SUPPORT -const char bb_path_mtab_file[] = CONFIG_FEATURE_MTAB_FILENAME; +#if defined(CONFIG_FEATURE_MTAB_SUPPORT) +const char bb_path_mtab_file[] = "/etc/mtab"; #else const char bb_path_mtab_file[] = "/proc/mounts"; #endif -- cgit v1.1