aboutsummaryrefslogtreecommitdiff
path: root/libbb/mtab_file.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-12-05 07:24:08 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-12-05 07:24:08 +0000
commit49ec1a2dc6dfba670b3659286524fd5baf12e6fe (patch)
treef11db23c430298ac9da2f3de80ec6c86cc75be70 /libbb/mtab_file.c
parent8a500b97872ecfd6495c1cb6be98bc594627b311 (diff)
downloadbusybox-w32-49ec1a2dc6dfba670b3659286524fd5baf12e6fe.tar.gz
busybox-w32-49ec1a2dc6dfba670b3659286524fd5baf12e6fe.tar.bz2
busybox-w32-49ec1a2dc6dfba670b3659286524fd5baf12e6fe.zip
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 git-svn-id: svn://busybox.net/trunk/busybox@6101 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 @@
23#include "libbb.h" 23#include "libbb.h"
24 24
25 25
26/* Busybox mount uses either /proc/mounts or /dev/mtab to 26/* Busybox mount uses either /proc/mounts or /etc/mtab to
27 * get the list of currently mounted filesystems */ 27 * get the list of currently mounted filesystems */
28#if defined CONFIG_FEATURE_MTAB_SUPPORT 28#if defined CONFIG_FEATURE_MTAB_SUPPORT
29const char mtab_file[] = "/etc/mtab"; 29const char mtab_file[] = "/etc/mtab";
30#else 30#else
31# if defined CONFIG_FEATURE_USE_DEVPS_PATCH 31const char mtab_file[] = "/proc/mounts";
32 const char mtab_file[] = "/dev/mtab";
33# else
34 const char mtab_file[] = "/proc/mounts";
35# endif
36#endif 32#endif
37 33
38 34