blob: 31f15d1fd40f7a26cc550ea35c5621f877708aa0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
$NetBSD: patch-af,v 1.2 2002/08/25 19:23:21 jlam Exp $
--- fam/FileSystemTable.c++.orig Tue Dec 18 11:03:37 2001
+++ fam/FileSystemTable.c++
@@ -21,11 +21,13 @@
// Temple Place - Suite 330, Boston MA 02111-1307, USA.
#include <stddef.h>
+#include <stdio.h>
#include "FileSystemTable.h"
-#include <mntent.h>
+#include "mntent.h"
#include <stdlib.h>
#include <string.h>
+#include <sys/param.h>
#if HAVE_STATVFS
#include <sys/statvfs.h>
@@ -255,7 +257,10 @@
// create_fs_by_name initializes our "root" member variable.
if (!fs_by_name)
{ create_fs_by_name();
+#if !defined(BSD)
+ /* there is no mtab "file" in BSD */
mtab_watcher = new InternalClient(mtab_name, mtab_event_handler, NULL);
+#endif
}
cr.become_user();
|