Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Sep 1999 18:30:02 -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:  <199909240130.SAA83006@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: 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




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