From owner-freebsd-bugs Thu Sep 23 18:30:12 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 6194914DB4 for ; Thu, 23 Sep 1999 18:30:11 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA83006; Thu, 23 Sep 1999 18:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 23 Sep 1999 18:30:02 -0700 (PDT) Message-Id: <199909240130.SAA83006@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: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: bin/13882: Missing mount options when specifing 'mount -p' Date: Thu, 23 Sep 1999 21:29:15 -0400 (EDT) Apparently, the fix wasn't as easy as I thought.... The attached patch fixes two missing options, but still doesn't handle the quota options. --- mount.c.orig Tue Sep 21 23:17:00 1999 +++ mount.c Thu Sep 23 21:14:05 1999 @@ -721,6 +721,8 @@ 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 & MNT_NOCLUSTERR) res = catopt(res, "noclusterr"); + if (flags & MNT_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