aboutsummaryrefslogtreecommitdiff
path: root/libbb/mtab_file.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-12-05 07:24:08 +0000
committerEric Andersen <andersen@codepoet.org>2002-12-05 07:24:08 +0000
commitdeca106b6dad70ad0a1312a82d762aa8d8ad52ba (patch)
treef11db23c430298ac9da2f3de80ec6c86cc75be70 /libbb/mtab_file.c
parent6f9b45b9eff22c664b93ace82d20669340a762f8 (diff)
downloadbusybox-deca106b6dad70ad0a1312a82d762aa8d8ad52ba.tar.gz
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
Diffstat (limited to 'libbb/mtab_file.c')
-rw-r--r--libbb/mtab_file.c8
1 files changed, 2 insertions, 6 deletions
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