summaryrefslogtreecommitdiffstats
path: root/sbin/mount
diff options
context:
space:
mode:
authormaxim <maxim@FreeBSD.org>2006-05-10 14:40:40 +0000
committermaxim <maxim@FreeBSD.org>2006-05-10 14:40:40 +0000
commit608e1aedfd750f13cca389393424e57f2bb65f85 (patch)
treec2bf3ac54ed785c6fa9dfffb12fa752c5bfa1884 /sbin/mount
parent9befa26aeb1d5d54a2004213e69b675603ead1d2 (diff)
downloadFreeBSD-src-608e1aedfd750f13cca389393424e57f2bb65f85.zip
FreeBSD-src-608e1aedfd750f13cca389393424e57f2bb65f85.tar.gz
o Extend rev. 1.75 and restore an ability to specify a non-default
quota files location. Submitted by: Kostik Belousov
Diffstat (limited to 'sbin/mount')
-rw-r--r--sbin/mount/mount.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c
index eb0814e..fc03a8b 100644
--- a/sbin/mount/mount.c
+++ b/sbin/mount/mount.c
@@ -120,6 +120,9 @@ remountable_fs_names[] = {
0
};
+static const char userquotaeq[] = "userquota=";
+static const char groupquotaeq[] = "groupquota=";
+
static int
use_mountprog(const char *vfstype)
{
@@ -634,8 +637,14 @@ mangle(options, argcp, argv)
continue;
} else if (strcmp(p, "userquota") == 0) {
continue;
+ } else if (strncmp(p, userquotaeq,
+ sizeof(userquotaeq) - 1) == 0) {
+ continue;
} else if (strcmp(p, "groupquota") == 0) {
continue;
+ } else if (strncmp(p, groupquotaeq,
+ sizeof(groupquotaeq) - 1) == 0) {
+ continue;
} else if (*p == '-') {
argv[argc++] = p;
p = strchr(p, '=');
OpenPOWER on IntegriCloud