mirror of https://github.com/MidnightCommander/mc
1999-05-29 Miguel de Icaza <miguel@nuclecu.unam.mx>
* treestore.c (should_skip_directory): Add fix from Wayne Roberts to actually acknowledge the settings of mc.global.
This commit is contained in:
parent
9c0597b6a3
commit
85c64a94bb
|
@ -1,3 +1,8 @@
|
|||
1999-05-29 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
||||
|
||||
* treestore.c (should_skip_directory): Add fix from Wayne Roberts
|
||||
to actually acknowledge the settings of mc.global.
|
||||
|
||||
1999-05-24 Brandon S. Allbery <allbery@ece.cmu.edu>
|
||||
|
||||
* subshell.c (pty_open_master): Added missing comma.p
|
||||
|
|
|
@ -786,7 +786,7 @@ should_skip_directory (char *dir)
|
|||
}
|
||||
|
||||
for (l = special_dirs; l; l = l->next){
|
||||
if (strcmp (dir, l->data) == 0)
|
||||
if (strncmp (dir, l->data, strlen (l->data)) == 0)
|
||||
return TRUE;
|
||||
}
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in New Issue