summaryrefslogtreecommitdiffstats
path: root/src/setup.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:11:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:11:49 +0000
commit1b88cd5ee8510e90e69f885bfd730ce57621781c (patch)
treeb6b33bd695258f68c68824029c279d660ee4b85e /src/setup.c
parentAdding upstream version 3:4.8.30. (diff)
downloadmc-1b88cd5ee8510e90e69f885bfd730ce57621781c.tar.xz
mc-1b88cd5ee8510e90e69f885bfd730ce57621781c.zip
Adding upstream version 3:4.8.31.upstream/3%4.8.31upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/setup.c')
-rw-r--r--src/setup.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/setup.c b/src/setup.c
index 68e6f37..9d6e153 100644
--- a/src/setup.c
+++ b/src/setup.c
@@ -1,7 +1,7 @@
/*
Setup loading/saving.
- Copyright (C) 1994-2023
+ Copyright (C) 1994-2024
Free Software Foundation, Inc.
This file is part of the Midnight Commander.
@@ -44,8 +44,8 @@
#ifdef ENABLE_VFS_FTP
#include "src/vfs/ftpfs/ftpfs.h"
#endif
-#ifdef ENABLE_VFS_FISH
-#include "src/vfs/fish/fish.h"
+#ifdef ENABLE_VFS_SHELL
+#include "src/vfs/shell/shell.h"
#endif
#ifdef HAVE_CHARSET
@@ -227,7 +227,7 @@ GArray *macros_list;
/*** file scope variables ************************************************************************/
static char *profile_name = NULL; /* ${XDG_CONFIG_HOME}/mc/ini */
-static char *panels_profile_name = NULL; /* ${XDG_CACHE_HOME}/mc/panels.ini */
+static char *panels_profile_name = NULL; /* ${XDG_CONFIG_HOME}/mc/panels.ini */
/* *INDENT-OFF* */
static const struct
@@ -386,9 +386,9 @@ static const struct
{ "ftpfs_directory_timeout", &ftpfs_directory_timeout },
{ "ftpfs_retry_seconds", &ftpfs_retry_seconds },
#endif /* ENABLE_VFS_FTP */
-#ifdef ENABLE_VFS_FISH
- { "fish_directory_timeout", &fish_directory_timeout },
-#endif /* ENABLE_VFS_FISH */
+#ifdef ENABLE_VFS_SHELL
+ { "shell_directory_timeout", &shell_directory_timeout },
+#endif /* ENABLE_VFS_SHELL */
#endif /* ENABLE_VFS */
/* option_tab_spacing is used in internal viewer */
{ "editor_tab_spacing", &option_tab_spacing },