Displaying 1 result from an estimated 1 matches for "cca9e4e".
Did you mean:
  cca9e4ec
  
2019 Jan 18
0
[klibc:master] nfsmount: support nfsvers= and vers= options
...https://www.zytor.com/pipermail/klibc/2017-September/003959.html
Signed-off-by: Ben Hutchings <ben at decadent.org.uk>
---
 usr/kinit/nfsmount/main.c | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
diff --git a/usr/kinit/nfsmount/main.c b/usr/kinit/nfsmount/main.c
index 36b29a5..cca9e4e 100644
--- a/usr/kinit/nfsmount/main.c
+++ b/usr/kinit/nfsmount/main.c
@@ -36,12 +36,15 @@ static struct nfs_mount_data mount_data = {
 };
 
 int nfs_port;
+int nfs_version;
 
 static struct int_opts {
 	char *name;
 	int *val;
 } int_opts[] = {
 	{"port",	&nfs_port},
+	{"nfsvers...