blob: f13cafc90ef0d119a684b4b9f7766e2286847d0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-ay,v 1.1 2004/11/19 12:35:22 sketch Exp $
--- src/NFSFileSystem.h.orig 2004-11-08 16:55:10.124688000 +0000
+++ src/NFSFileSystem.h 2004-11-08 16:55:48.362013000 +0000
@@ -39,7 +39,11 @@
public:
+#if defined(HAVE_SYS_MNTTAB_H)
+ NFSFileSystem(const mnttab&);
+#else
NFSFileSystem(const mntent&);
+#endif
~NFSFileSystem();
virtual bool dir_entries_scanned() const;
|