From 4f3558af1774569b3de73bd45232d2dacb4fb71e Mon Sep 17 00:00:00 2001 From: Mark Whitley Date: Wed, 25 Apr 2001 17:03:40 +0000 Subject: [PATCH] Fixed a BB_MTAB #define buglet reported by Magnus Damm. --- libbb/mtab_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ /* Busybox mount uses either /proc/mounts or /dev/mtab to * get the list of currently mounted filesystems */ -#if defined BB_MTAB +#if defined BB_FEATURE_MOUNT_MTAB_SUPPORT const char mtab_file[] = "/etc/mtab"; #else # if defined BB_FEATURE_USE_DEVPS_PATCH -- 2.25.1