X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=support%2Fnfs%2Fconn.c;h=970abfe38025d3031cf0ec1c547c931226afecd8;hp=cf080c26e8cb61187f32c6de9c72c1cdc290287e;hb=b6e4ddd10b3c67ef210e572dec956cb35ce96440;hpb=3eb619857b2f2fe896877c903a2c2eb28b632945 diff --git a/support/nfs/conn.c b/support/nfs/conn.c index cf080c2..970abfe 100644 --- a/support/nfs/conn.c +++ b/support/nfs/conn.c @@ -25,24 +25,6 @@ extern int verbose; -/* Map an NFS version into the corresponding Mountd version */ -u_long nfsvers_to_mnt(const u_long vers) -{ - static const u_long nfs_to_mnt[] = { 0, 0, 1, 3 }; - if (vers <= 3) - return nfs_to_mnt[vers]; - return 0; -} - -/* Map a Mountd version into the corresponding NFS version */ -u_long mntvers_to_nfs(const u_long vers) -{ - static const u_long mnt_to_nfs[] = { 0, 2, 2, 3 }; - if (vers <= 3) - return mnt_to_nfs[vers]; - return 0; -} - /* * Create a socket that is locally bound to a * reserve or non-reserve port. For any failures,