aboutsummaryrefslogtreecommitdiff
path: root/util-linux/mount.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2005-10-08 18:49:45 +0000
committerRob Landley <rob@landley.net>2005-10-08 18:49:45 +0000
commit4a7252babdeca935e8446b136f98bae6b6e2f04a (patch)
treecda1148d99465a80bc7ef5f4256c31c34b43bea6 /util-linux/mount.c
parent45ad0e87d679fd7fe09909577e539dfe95646e54 (diff)
downloadbusybox-4a7252babdeca935e8446b136f98bae6b6e2f04a.tar.gz
Rename CONFIG_NFSMOUNT to CONFIG_FEATURE_MOUNT_NFS so allbaseconfig can
find it (and tweak defconfig to catch up).
Diffstat (limited to 'util-linux/mount.c')
-rw-r--r--util-linux/mount.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c
index 05f25a70d..15b2b192f 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -37,7 +37,7 @@
/* This is just a warning of a common mistake. Possibly this should be a
* uclibc faq entry rather than in busybox... */
-#if ENABLE_NFSMOUNT && defined(__UCLIBC__) && ! defined(__UCLIBC_HAS_RPC__)
+#if ENABLE_FEATURE_MOUNT_NFS && defined(__UCLIBC__) && ! defined(__UCLIBC_HAS_RPC__)
#error "You need to build uClibc with UCLIBC_HAS_RPC for busybox mount with NFS support to compile."
#endif
@@ -278,7 +278,7 @@ singlemount:
// Might this be an NFS filesystem?
- if(ENABLE_NFSMOUNT && (!fsType || !strcmp(fsType,"nfs")) &&
+ if(ENABLE_FEATURE_MOUNT_NFS && (!fsType || !strcmp(fsType,"nfs")) &&
strchr(blockDevice, ':') != NULL)
{
if(nfsmount(blockDevice, directory, &flags, &string_flags, 1))