summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sbin/mount/mount.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c
index 89bc1cbda1d7..abde12d27bc0 100644
--- a/sbin/mount/mount.c
+++ b/sbin/mount/mount.c
@@ -633,6 +633,10 @@ mangle(options, argcp, argv)
* not a real mount option.
*/
continue;
+ } else if (strcmp(p, "userquota") == 0) {
+ continue;
+ } else if (strcmp(p, "groupquota") == 0) {
+ continue;
} else if (*p == '-') {
argv[argc++] = p;
p = strchr(p, '=');