mirror of
https://github.com/MidnightCommander/mc
synced 2025-04-03 05:32:56 +03:00
Rename VFS module initialization functions.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
3d6d6bd9a6
commit
01a1a01d4e
src/vfs
tests
@ -887,7 +887,7 @@ cpio_fh_open (struct vfs_class *me, vfs_file_handler_t * fh, int flags, mode_t m
|
||||
/* --------------------------------------------------------------------------------------------- */
|
||||
|
||||
void
|
||||
init_cpiofs (void)
|
||||
vfs_init_cpiofs (void)
|
||||
{
|
||||
/* FIXME: cpiofs used own temp files */
|
||||
vfs_init_subclass (&cpio_subclass, "cpiofs", VFS_READONLY, "ucpio");
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
/*** declarations of public functions ************************************************************/
|
||||
|
||||
void init_cpiofs (void);
|
||||
void vfs_init_cpiofs (void);
|
||||
|
||||
/*** inline functions ****************************************************************************/
|
||||
|
||||
|
@ -1589,7 +1589,7 @@ extfs_setctl (const vfs_path_t * vpath, int ctlop, void *arg)
|
||||
/* --------------------------------------------------------------------------------------------- */
|
||||
|
||||
void
|
||||
init_extfs (void)
|
||||
vfs_init_extfs (void)
|
||||
{
|
||||
vfs_init_subclass (&extfs_subclass, "extfs", VFS_UNKNOWN, NULL);
|
||||
vfs_extfs_ops->init = extfs_init;
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
/*** declarations of public functions ************************************************************/
|
||||
|
||||
void init_extfs (void);
|
||||
void vfs_init_extfs (void);
|
||||
|
||||
/*** inline functions ****************************************************************************/
|
||||
|
||||
|
@ -1749,7 +1749,7 @@ fish_open (const vfs_path_t * vpath, int flags, mode_t mode)
|
||||
/* --------------------------------------------------------------------------------------------- */
|
||||
|
||||
void
|
||||
init_fish (void)
|
||||
vfs_init_fish (void)
|
||||
{
|
||||
tcp_init ();
|
||||
|
||||
|
@ -21,7 +21,7 @@ extern int fish_directory_timeout;
|
||||
|
||||
/*** declarations of public functions ************************************************************/
|
||||
|
||||
void init_fish (void);
|
||||
void vfs_init_fish (void);
|
||||
|
||||
/*** inline functions ****************************************************************************/
|
||||
|
||||
|
@ -2697,7 +2697,7 @@ ftpfs_init_passwd (void)
|
||||
/* --------------------------------------------------------------------------------------------- */
|
||||
|
||||
void
|
||||
init_ftpfs (void)
|
||||
vfs_init_ftpfs (void)
|
||||
{
|
||||
tcp_init ();
|
||||
|
||||
|
@ -36,7 +36,7 @@ extern gboolean ftpfs_first_cd_then_ls;
|
||||
/*** declarations of public functions ************************************************************/
|
||||
|
||||
void ftpfs_init_passwd (void);
|
||||
void init_ftpfs (void);
|
||||
void vfs_init_ftpfs (void);
|
||||
|
||||
/*** inline functions ****************************************************************************/
|
||||
#endif
|
||||
|
@ -422,7 +422,7 @@ local_lseek (void *data, off_t offset, int whence)
|
||||
/* --------------------------------------------------------------------------------------------- */
|
||||
|
||||
void
|
||||
init_localfs (void)
|
||||
vfs_init_localfs (void)
|
||||
{
|
||||
/* NULLize vfs_s_subclass members */
|
||||
memset (&local_subclass, 0, sizeof (local_subclass));
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
/*** declarations of public functions ************************************************************/
|
||||
|
||||
extern void init_localfs (void);
|
||||
extern void vfs_init_localfs (void);
|
||||
|
||||
/* these functions are used by other filesystems, so they are
|
||||
* published here. */
|
||||
|
@ -95,35 +95,35 @@ void
|
||||
vfs_plugins_init (void)
|
||||
{
|
||||
/* localfs needs to be the first one */
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
|
||||
#ifdef ENABLE_VFS_CPIO
|
||||
init_cpiofs ();
|
||||
vfs_init_cpiofs ();
|
||||
#endif /* ENABLE_VFS_CPIO */
|
||||
#ifdef ENABLE_VFS_TAR
|
||||
init_tarfs ();
|
||||
vfs_init_tarfs ();
|
||||
#endif /* ENABLE_VFS_TAR */
|
||||
#ifdef ENABLE_VFS_SFS
|
||||
init_sfs ();
|
||||
vfs_init_sfs ();
|
||||
#endif /* ENABLE_VFS_SFS */
|
||||
#ifdef ENABLE_VFS_EXTFS
|
||||
init_extfs ();
|
||||
vfs_init_extfs ();
|
||||
#endif /* ENABLE_VFS_EXTFS */
|
||||
#ifdef ENABLE_VFS_UNDELFS
|
||||
init_undelfs ();
|
||||
vfs_init_undelfs ();
|
||||
#endif /* ENABLE_VFS_UNDELFS */
|
||||
|
||||
#ifdef ENABLE_VFS_FTP
|
||||
init_ftpfs ();
|
||||
vfs_init_ftpfs ();
|
||||
#endif /* ENABLE_VFS_FTP */
|
||||
#ifdef ENABLE_VFS_SFTP
|
||||
init_sftpfs ();
|
||||
vfs_init_sftpfs ();
|
||||
#endif /* ENABLE_VFS_SFTP */
|
||||
#ifdef ENABLE_VFS_FISH
|
||||
init_fish ();
|
||||
vfs_init_fish ();
|
||||
#endif /* ENABLE_VFS_FISH */
|
||||
#ifdef ENABLE_VFS_SMB
|
||||
init_smbfs ();
|
||||
vfs_init_smbfs ();
|
||||
#endif /* ENABLE_VFS_SMB */
|
||||
|
||||
}
|
||||
|
@ -548,7 +548,7 @@ sfs_which (struct vfs_class *me, const char *path)
|
||||
/* --------------------------------------------------------------------------------------------- */
|
||||
|
||||
void
|
||||
init_sfs (void)
|
||||
vfs_init_sfs (void)
|
||||
{
|
||||
/* NULLize vfs_s_subclass members */
|
||||
memset (&sfs_subclass, 0, sizeof (sfs_subclass));
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
/*** declarations of public functions ************************************************************/
|
||||
|
||||
void init_sfs (void);
|
||||
void vfs_init_sfs (void);
|
||||
|
||||
/*** inline functions ****************************************************************************/
|
||||
|
||||
|
@ -54,7 +54,7 @@ struct vfs_class *sftpfs_class = VFS_CLASS (&sftpfs_subclass);
|
||||
*/
|
||||
|
||||
void
|
||||
init_sftpfs (void)
|
||||
vfs_init_sftpfs (void)
|
||||
{
|
||||
tcp_init ();
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
/*** declarations of public functions ************************************************************/
|
||||
|
||||
void init_sftpfs (void);
|
||||
void vfs_init_sftpfs (void);
|
||||
|
||||
/*** inline functions ****************************************************************************/
|
||||
|
||||
|
@ -2238,7 +2238,7 @@ vfs_smb_authinfo_new (const char *host, const char *share, const char *domain,
|
||||
/* --------------------------------------------------------------------------------------------- */
|
||||
|
||||
void
|
||||
init_smbfs (void)
|
||||
vfs_init_smbfs (void)
|
||||
{
|
||||
tcp_init ();
|
||||
|
||||
|
@ -27,7 +27,7 @@ typedef struct smb_authinfo
|
||||
|
||||
/*** declarations of public functions ************************************************************/
|
||||
|
||||
void init_smbfs (void);
|
||||
void vfs_init_smbfs (void);
|
||||
void smbfs_set_debug (int arg);
|
||||
|
||||
smb_authinfo *vfs_smb_authinfo_new (const char *host,
|
||||
|
@ -990,7 +990,7 @@ tar_fh_open (struct vfs_class *me, vfs_file_handler_t * fh, int flags, mode_t mo
|
||||
/* --------------------------------------------------------------------------------------------- */
|
||||
|
||||
void
|
||||
init_tarfs (void)
|
||||
vfs_init_tarfs (void)
|
||||
{
|
||||
/* FIXME: tarfs used own temp files */
|
||||
vfs_init_subclass (&tarfs_subclass, "tarfs", VFS_READONLY, "utar");
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
/*** declarations of public functions ************************************************************/
|
||||
|
||||
void init_tarfs (void);
|
||||
void vfs_init_tarfs (void);
|
||||
|
||||
/*** inline functions ****************************************************************************/
|
||||
|
||||
|
@ -823,7 +823,7 @@ com_err (const char *whoami, long err_code, const char *fmt, ...)
|
||||
/* --------------------------------------------------------------------------------------------- */
|
||||
|
||||
void
|
||||
init_undelfs (void)
|
||||
vfs_init_undelfs (void)
|
||||
{
|
||||
/* NULLize vfs_s_subclass members */
|
||||
memset (&undelfs_subclass, 0, sizeof (undelfs_subclass));
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
/*** declarations of public functions ************************************************************/
|
||||
|
||||
void init_undelfs (void);
|
||||
void vfs_init_undelfs (void);
|
||||
|
||||
/*** inline functions ****************************************************************************/
|
||||
|
||||
|
@ -45,7 +45,7 @@ setup (void)
|
||||
{
|
||||
str_init_strings (NULL);
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
}
|
||||
|
||||
|
@ -81,7 +81,7 @@ setup (void)
|
||||
{
|
||||
str_init_strings ("KOI8-R");
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
|
||||
config_object__init ();
|
||||
}
|
||||
|
@ -61,7 +61,7 @@ setup (void)
|
||||
#endif
|
||||
str_init_strings ("UTF-8");
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
}
|
||||
|
||||
/* --------------------------------------------------------------------------------------------- */
|
||||
|
@ -48,7 +48,7 @@ setup (void)
|
||||
str_init_strings (NULL);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
|
||||
#ifdef HAVE_CHARSET
|
||||
|
@ -58,7 +58,7 @@ setup (void)
|
||||
str_init_strings (NULL);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
|
||||
memset (&vfs_test_subclass, 0, sizeof (vfs_test_subclass));
|
||||
|
@ -45,7 +45,7 @@ setup (void)
|
||||
str_init_strings (NULL);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
|
||||
mc_global.sysconfig_dir = (char *) TEST_SHARE_DIR;
|
||||
|
@ -45,7 +45,7 @@ setup (void)
|
||||
str_init_strings (NULL);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
|
||||
mc_global.sysconfig_dir = (char *) TEST_SHARE_DIR;
|
||||
|
@ -64,7 +64,7 @@ setup (void)
|
||||
str_init_strings (NULL);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
|
||||
init_test_classes ();
|
||||
|
@ -68,7 +68,7 @@ test_init_vfs (const char *encoding)
|
||||
str_init_strings (encoding);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
|
||||
mc_global.sysconfig_dir = (char *) TEST_SHARE_DIR;
|
||||
|
@ -48,7 +48,7 @@ setup (void)
|
||||
str_init_strings (NULL);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
|
||||
vfs_init_class (&vfs_test_ops1, "testfs1", VFS_NOLINKS | VFS_REMOTE, "test1");
|
||||
|
@ -76,7 +76,7 @@ setup (void)
|
||||
str_init_strings (NULL);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
|
||||
memset (&vfs_test_subclass1, 0, sizeof (vfs_test_subclass1));
|
||||
|
@ -48,7 +48,7 @@ setup (void)
|
||||
str_init_strings (NULL);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
}
|
||||
|
||||
|
@ -58,7 +58,7 @@ setup (void)
|
||||
str_init_strings (NULL);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
|
||||
vfs_init_subclass (&test_subclass1, "testfs1", VFS_NOLINKS | VFS_REMOTE, "test1");
|
||||
|
@ -49,7 +49,7 @@ setup (void)
|
||||
str_init_strings (NULL);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
}
|
||||
|
||||
|
@ -51,7 +51,7 @@ setup (void)
|
||||
str_init_strings (NULL);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
|
||||
vfs_init_class (&vfs_test_ops1, "testfs1", VFS_NOLINKS, "test1");
|
||||
|
@ -58,7 +58,7 @@ setup (void)
|
||||
str_init_strings (NULL);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
|
||||
vfs_init_class (&vfs_test_ops1, "testfs1", VFS_NOLINKS | VFS_REMOTE, "test1");
|
||||
|
@ -85,7 +85,7 @@ setup (void)
|
||||
str_init_strings (NULL);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
|
||||
vfs_init_subclass (&test_subclass1, "testfs1", VFS_NOLINKS | VFS_REMOTE, "test1");
|
||||
|
@ -79,7 +79,7 @@ setup (void)
|
||||
str_init_strings (NULL);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
}
|
||||
|
||||
|
@ -44,7 +44,7 @@ setup (void)
|
||||
str_init_strings (NULL);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
|
||||
vfs_init_class (&vfs_test_ops1, "testfs1", VFS_NOLINKS | VFS_REMOTE, "test1");
|
||||
|
@ -149,7 +149,7 @@ my_setup (void)
|
||||
str_init_strings (NULL);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
|
||||
#ifdef HAVE_CHARSET
|
||||
|
@ -240,7 +240,7 @@ setup (void)
|
||||
{
|
||||
str_init_strings (NULL);
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
|
||||
vfs_file_is_local__init ();
|
||||
|
@ -97,7 +97,7 @@ setup (void)
|
||||
{
|
||||
str_init_strings (NULL);
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
|
||||
mc_config_get_string__init ();
|
||||
|
@ -83,7 +83,7 @@ setup (void)
|
||||
str_init_strings (NULL);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
do_cd__new_dir_vpath__captured = NULL;
|
||||
}
|
||||
|
@ -45,7 +45,7 @@ setup (void)
|
||||
str_init_strings (NULL);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
|
||||
mc_global.mc_run_mode = MC_RUN_FULL;
|
||||
|
@ -41,7 +41,7 @@ setup (void)
|
||||
str_init_strings (NULL);
|
||||
|
||||
vfs_init ();
|
||||
init_localfs ();
|
||||
vfs_init_localfs ();
|
||||
vfs_setup_work_dir ();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user