diff options
author | Mark Whitley <markw@lineo.com> | 2001-04-25 17:03:40 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2001-04-25 17:03:40 +0000 |
commit | 4f3558af1774569b3de73bd45232d2dacb4fb71e (patch) | |
tree | c77e81f77219076a0086c1c472a5958fc61c323f | |
parent | 04095e58fb4d3a083f77962714080ffe8139b39c (diff) | |
download | busybox-w32-4f3558af1774569b3de73bd45232d2dacb4fb71e.tar.gz busybox-w32-4f3558af1774569b3de73bd45232d2dacb4fb71e.tar.bz2 busybox-w32-4f3558af1774569b3de73bd45232d2dacb4fb71e.zip |
Fixed a BB_MTAB #define buglet reported 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 d9c3de3c3..c872b9a71 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_MTAB | 34 | #if defined BB_FEATURE_MOUNT_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 |