From deca106b6dad70ad0a1312a82d762aa8d8ad52ba Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 5 Dec 2002 07:24:08 +0000 Subject: Kill CONFIG_FEATURE_USE_DEVPS_PATCH and the devps patch. I'm not maintaining it anymore, and it is now terribly out of date. -Erik --- libbb/mtab_file.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'libbb/mtab_file.c') diff --git a/libbb/mtab_file.c b/libbb/mtab_file.c index 267a13720..3d5729026 100644 --- a/libbb/mtab_file.c +++ b/libbb/mtab_file.c @@ -23,16 +23,12 @@ #include "libbb.h" -/* Busybox mount uses either /proc/mounts or /dev/mtab to +/* 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 mtab_file[] = "/etc/mtab"; #else -# if defined CONFIG_FEATURE_USE_DEVPS_PATCH - const char mtab_file[] = "/dev/mtab"; -# else - const char mtab_file[] = "/proc/mounts"; -# endif +const char mtab_file[] = "/proc/mounts"; #endif -- cgit v1.2.3