Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 21 Sep 1999 20:30:01 -0700 (PDT)
From:      "Stephen J. Roznowski" <sjr@home.net>
To:        freebsd-bugs@FreeBSD.org
Subject:   Re: bin/13882: Missing mount options when specifing 'mount -p'
Message-ID:  <199909220330.UAA58901@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR bin/13882; it has been noted by GNATS.

From: "Stephen J. Roznowski" <sjr@home.net>
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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199909220330.UAA58901>