diff options
author | mbr <mbr@FreeBSD.org> | 2004-07-15 13:24:44 +0000 |
---|---|---|
committer | mbr <mbr@FreeBSD.org> | 2004-07-15 13:24:44 +0000 |
commit | 4cb8610989f25db27d267dc958b0997af5576139 (patch) | |
tree | 251213acb671953231e9a0d356146c366f0af38a /usr.sbin | |
parent | 1257bb0d633a4d054a2a9d2ab41c296c6c35b948 (diff) | |
download | FreeBSD-src-4cb8610989f25db27d267dc958b0997af5576139.zip FreeBSD-src-4cb8610989f25db27d267dc958b0997af5576139.tar.gz |
Reenable nullfs for local links. The change from 'struct vfsconf'
to 'struct xvfsconf' broke auto configuration. Patches have been
submitted to the vendor.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/amd/include/config.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/amd/include/config.h b/usr.sbin/amd/include/config.h index 5adca19..0ee7356 100644 --- a/usr.sbin/amd/include/config.h +++ b/usr.sbin/amd/include/config.h @@ -317,7 +317,7 @@ #define HAVE_FS_NFS3 1 /* Define if have NULLFS (loopback on bsd44) filesystem */ -/* #undef HAVE_FS_NULLFS */ +#define HAVE_FS_NULLFS 1 /* Define if have PCFS filesystem */ #define HAVE_FS_PCFS 1 @@ -1767,7 +1767,7 @@ #define MNTTAB_TYPE_NFS3 "nfs3" /* Mount-table entry name for NULLFS (loopback on bsd44) filesystem */ -/* #undef MNTTAB_TYPE_NULLFS */ +#define MNTTAB_TYPE_NULLFS "nullfs" /* Mount-table entry name for PCFS filesystem */ #define MNTTAB_TYPE_PCFS "msdosfs" @@ -1824,7 +1824,7 @@ #define MOUNT_TYPE_NFS3 MOUNT_NFS3 /* Mount(2) type/name for NULLFS (loopback on bsd44) filesystem */ -/* #undef MOUNT_TYPE_NULLFS */ +#define MOUNT_TYPE_NULLFS "nullfs" /* Mount(2) type/name for PCFS filesystem. XXX: conf/trap/trap_hpux.h may override this definition for HPUX 9.0 */ |