From owner-freebsd-bugs Tue Sep 21 20:30: 3 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E087114F7D for ; Tue, 21 Sep 1999 20:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA58901; Tue, 21 Sep 1999 20:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 21 Sep 1999 20:30:01 -0700 (PDT) Message-Id: <199909220330.UAA58901@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Stephen J. Roznowski" Subject: Re: bin/13882: Missing mount options when specifing 'mount -p' Reply-To: "Stephen J. Roznowski" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/13882; it has been noted by GNATS. From: "Stephen J. Roznowski" To: Jim.Pirzyk@disney.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/13882: Missing mount options when specifing 'mount -p' Date: Tue, 21 Sep 1999 23:27:24 -0400 (EDT) On 21 Sep, Jim.Pirzyk@disney.com wrote: >>Fix: This seems easy to fix (including the other missing options): --- mount.c.orig Tue Sep 21 23:17:00 1999 +++ mount.c Tue Sep 21 23:21:36 1999 @@ -721,6 +721,10 @@ if (flags & MNT_NOCLUSTERW) res = catopt(res, "noclusterw"); if (flags & MNT_NOSYMFOLLOW) res = catopt(res, "nosymfollow"); if (flags & MNT_SUIDDIR) res = catopt(res, "suiddir"); + if (flags & MOPT_USERQUOTA) res = catopt(res, "userquota"); + if (flags & MOPT_GROUPQUOTA) res = catopt(res, "groupquota"); + if (flags & MOPT_NOCLUSTERR) res = catopt(res, "noclusterr"); + if (flags & MOPT_NOCLUSTERW) res = catopt(res, "noclusterw"); return res; } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message