diff options
Diffstat (limited to 'support/nfs')
-rw-r--r-- | support/nfs/Makefile.am | 2 | ||||
-rw-r--r-- | support/nfs/conn.c | 21 |
2 files changed, 1 insertions, 22 deletions
diff --git a/support/nfs/Makefile.am b/support/nfs/Makefile.am index 6006df6..82353a9 100644 --- a/support/nfs/Makefile.am +++ b/support/nfs/Makefile.am @@ -4,7 +4,7 @@ noinst_LIBRARIES = libnfs.a libnfs_a_SOURCES = exports.c rmtab.c xio.c rpcmisc.c rpcdispatch.c \ xlog.c xcommon.c wildmat.c nfssvc.c nfsclient.c \ nfsexport.c getfh.c nfsctl.c \ - svc_socket.c cacheio.c closeall.c conn.c fstab.c nfs_mntent.c + svc_socket.c cacheio.c closeall.c fstab.c nfs_mntent.c MAINTAINERCLEANFILES = Makefile.in diff --git a/support/nfs/conn.c b/support/nfs/conn.c deleted file mode 100644 index db9185d..0000000 --- a/support/nfs/conn.c +++ /dev/null @@ -1,21 +0,0 @@ -/* - * conn.c -- NFS client mount / umount connection code support functions - * - * 2006-06-06 Amit Gud <agud@redhat.com> - * - Moved code snippets to nfs-utils/support/nfs from util-linux/mount/nfsmount.c - * - */ - -#include "config.h" -#include <errno.h> -#include <unistd.h> -#include <rpc/rpc.h> -#include <rpc/pmap_prot.h> -#include <rpc/pmap_clnt.h> -#include <sys/socket.h> -#include <sys/stat.h> -#include <netinet/in.h> -#include <arpa/inet.h> - -#include "conn.h" - |