diff options
Diffstat (limited to 'support')
-rw-r--r-- | support/include/conn.h | 2 | ||||
-rw-r--r-- | support/nfs/conn.c | 18 |
2 files changed, 0 insertions, 20 deletions
diff --git a/support/include/conn.h b/support/include/conn.h index f21c10e..48f5a1c 100644 --- a/support/include/conn.h +++ b/support/include/conn.h @@ -30,8 +30,6 @@ static const struct timeval RETRY_TIMEOUT = { 3, 0 }; int clnt_ping(struct sockaddr_in *, const u_long, const u_long, const u_int, struct sockaddr_in *); -u_long nfsvers_to_mnt(const u_long); -u_long mntvers_to_nfs(const u_long); int get_socket(struct sockaddr_in *, u_int, int, int); #endif /* _CONN_H */ 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, |