From a64b65aac7af65f96a24cd89fc07a31dbb5980ab Mon Sep 17 00:00:00 2001 From: Neil Brown Date: Fri, 16 Mar 2007 18:26:37 +1100 Subject: Remove nfs_mntent_t in favour of struct mntent They are identical and the later allows us to use hasmntent. --- utils/mount/nfsumount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils') diff --git a/utils/mount/nfsumount.c b/utils/mount/nfsumount.c index 4208ade..eb3d1fb 100644 --- a/utils/mount/nfsumount.c +++ b/utils/mount/nfsumount.c @@ -147,7 +147,7 @@ int del_mtab(const char *spec, const char *node) res = mount(spec, node, NULL, MS_MGC_VAL | MS_REMOUNT | MS_RDONLY, NULL); if (res == 0) { - nfs_mntent_t remnt; + struct mntent remnt; fprintf(stderr, _("umount: %s busy - remounted read-only\n"), spec); -- cgit