apgo in Bug 322 writes: kill off CONFIG_FEATURE_MTAB_FILENAME

1_1_stable
Mike Frysinger 2005-07-30 08:48:10 +00:00
parent 69024551bf
commit b953134bba
1 changed files with 2 additions and 2 deletions

View File

@ -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