Added three line hack to nfs_ops.c to add support for the 'resvport'
mount option: you need this little bugger in environments with facsist SunOS NFS servers (like mine :).
This commit is contained in:
parent
911b598f11
commit
4b35aae3dd
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=6332
@ -35,7 +35,7 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: nfs_ops.c,v 5.2.2.2 1992/05/31 16:35:05 jsp Exp $
|
||||
* $Id: nfs_ops.c,v 1.1.1.1 1994/05/26 05:22:02 rgrimes Exp $
|
||||
*/
|
||||
|
||||
#ifndef lint
|
||||
@ -556,6 +556,15 @@ mntfs *mf;
|
||||
if (nfs_args.retrans = hasmntval(&mnt, "retrans"))
|
||||
nfs_args.flags |= NFSMNT_RETRANS;
|
||||
|
||||
/*
|
||||
* How is it possible that 4.4BSD has NFSMNT_RESVPORT but amd
|
||||
* doesn't know about it?!!
|
||||
*/
|
||||
#ifdef NFSMNT_RESVPORT
|
||||
if (hasmntopt(&mnt, "resvport") != NULL)
|
||||
nfs_args.flags |= NFSMNT_RESVPORT;
|
||||
#endif
|
||||
|
||||
#ifdef NFSMNT_BIODS
|
||||
if (nfs_args.biods = hasmntval(&mnt, "biods"))
|
||||
nfs_args.flags |= NFSMNT_BIODS;
|
||||
|
Loading…
Reference in New Issue
Block a user