diff options
author | Matt Kraai <kraai@debian.org> | 2001-10-04 15:23:34 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-10-04 15:23:34 +0000 |
commit | 54a992d81e4a875e1710e188a3593fa9762e06a4 (patch) | |
tree | 4b2f5a87ff49f8791935b3124f5afbf8920786fd | |
parent | b0a0fc89446c5f3851a9ec42f64cf16297cda0fd (diff) | |
download | busybox-w32-54a992d81e4a875e1710e188a3593fa9762e06a4.tar.gz busybox-w32-54a992d81e4a875e1710e188a3593fa9762e06a4.tar.bz2 busybox-w32-54a992d81e4a875e1710e188a3593fa9762e06a4.zip |
Fix BB_FEATURE_MTAB_SUPPORT test (report and patch by Magnus Damm).
-rw-r--r-- | libbb/mtab_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/mtab_file.c b/libbb/mtab_file.c index c872b9a71..56f8e06ab 100644 --- a/libbb/mtab_file.c +++ b/libbb/mtab_file.c | |||
@@ -31,7 +31,7 @@ | |||
31 | 31 | ||
32 | /* Busybox mount uses either /proc/mounts or /dev/mtab to | 32 | /* Busybox mount uses either /proc/mounts or /dev/mtab to |
33 | * get the list of currently mounted filesystems */ | 33 | * get the list of currently mounted filesystems */ |
34 | #if defined BB_FEATURE_MOUNT_MTAB_SUPPORT | 34 | #if defined BB_FEATURE_MTAB_SUPPORT |
35 | const char mtab_file[] = "/etc/mtab"; | 35 | const char mtab_file[] = "/etc/mtab"; |
36 | #else | 36 | #else |
37 | # if defined BB_FEATURE_USE_DEVPS_PATCH | 37 | # if defined BB_FEATURE_USE_DEVPS_PATCH |