1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

NFS support should be conditional on LOADER_NFS_SUPPORT, not

LOADER_NET_SUPPORT.
This commit is contained in:
Thomas Moestl 2003-07-11 16:12:50 +00:00
parent 0f7859e332
commit 07a41f740a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=117448

View File

@ -115,7 +115,7 @@ struct fs_ops *file_system[] = {
#ifdef LOADER_BZIP2_SUPPORT
&bzipfs_fsops,
#endif
#ifdef LOADER_NET_SUPPORT
#ifdef LOADER_NFS_SUPPORT
&nfs_fsops,
#endif
#ifdef LOADER_TFTP_SUPPORT