mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
* extfs.c (extfs_init) [GTK]: Use mc_home instead of LIBDIR.
From Ludovic Drolez <ludovic.drolez@freealter.com>.
This commit is contained in:
parent
72d0112151
commit
a1532469cd
@ -1,3 +1,8 @@
|
||||
2001-07-20 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* extfs.c (extfs_init) [GTK]: Use mc_home instead of LIBDIR.
|
||||
From Ludovic Drolez <ludovic.drolez@freealter.com>.
|
||||
|
||||
2001-07-17 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* vfs.c (mc_return_cwd): Use g_get_current_dir().
|
||||
|
@ -1312,10 +1312,10 @@ static int extfs_init (vfs *me)
|
||||
|
||||
mc_extfsini = concat_dir_and_file (mc_home, "extfs/extfs.ini");
|
||||
cfg = fopen (mc_extfsini, "r");
|
||||
g_free (mc_extfsini);
|
||||
|
||||
if (!cfg) {
|
||||
fprintf( stderr, "Warning: " LIBDIR "extfs/extfs.ini not found\n" );
|
||||
fprintf(stderr, "Warning: file %s not found\n", mc_extfsini);
|
||||
g_free (mc_extfsini);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -1335,8 +1335,10 @@ static int extfs_init (vfs *me)
|
||||
/* We may not use vfs_die() message or message_1s or similar,
|
||||
* UI is not initialized at this time and message would not
|
||||
* appear on screen. */
|
||||
fprintf( stderr, "Warning: You need to update your " LIBDIR "extfs/extfs.ini file.\n" );
|
||||
fprintf(stderr, "Warning: You need to update your %s file.\n",
|
||||
mc_extfsini);
|
||||
fclose(cfg);
|
||||
g_free (mc_extfsini);
|
||||
return 0;
|
||||
}
|
||||
if (*key == '#')
|
||||
@ -1358,6 +1360,7 @@ static int extfs_init (vfs *me)
|
||||
extfs_no++;
|
||||
}
|
||||
fclose(cfg);
|
||||
g_free (mc_extfsini);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user