* vfs.c (vfs_init) [!USE_NETCODE]: Don't register fish.

This commit is contained in:
Pavel Roskin 2002-09-06 01:27:45 +00:00
parent 3b1339707a
commit 3697034770
2 changed files with 7 additions and 5 deletions

View File

@ -1,5 +1,7 @@
2002-09-05 Pavel Roskin <proski@gnu.org>
* vfs.c (vfs_init) [!USE_NETCODE]: Don't register fish.
* ftpfs.c: Check for existance of arpa/inet.h when using it.
* mcfs.c: Likewise.
* mcserv.c: Likewise.

View File

@ -1273,15 +1273,15 @@ vfs_init (void)
#ifdef USE_NETCODE
tcp_init();
vfs_register (&vfs_ftpfs_ops);
vfs_register (&vfs_fish_ops);
#ifdef WITH_SMBFS
vfs_register (&vfs_smbfs_ops);
#endif
#endif /* WITH_SMBFS */
#ifdef WITH_MCFS
vfs_register (&vfs_mcfs_ops);
#endif
#endif
#endif /* WITH_SMBFS */
#endif /* USE_NETCODE */
vfs_register (&vfs_fish_ops);
vfs_register (&vfs_extfs_ops);
vfs_register (&vfs_sfs_ops);
vfs_register (&vfs_tarfs_ops);
@ -1289,7 +1289,7 @@ vfs_init (void)
#ifdef USE_EXT2FSLIB
vfs_register (&vfs_undelfs_ops);
#endif
#endif /* USE_EXT2FSLIB */
vfs_setup_wd ();
}