update: delete ignored symlinks from database
When you disable the "follow_outside_symlinks" or the "follow_inside_symlinks" setting, the next update should remove the now-ignored files from the database.
This commit is contained in:
parent
1a6ed81193
commit
d083032236
1
NEWS
1
NEWS
@ -1,5 +1,6 @@
|
|||||||
ver 0.15.6 (2009/??/??)
|
ver 0.15.6 (2009/??/??)
|
||||||
* output_thread: check again if output is open on PAUSE
|
* output_thread: check again if output is open on PAUSE
|
||||||
|
* update: delete ignored symlinks from database
|
||||||
|
|
||||||
|
|
||||||
ver 0.15.5 (2009/10/18)
|
ver 0.15.5 (2009/10/18)
|
||||||
|
@ -672,7 +672,11 @@ updateDirectory(struct directory *directory, const struct stat *st)
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
utf8 = fs_charset_to_utf8(ent->d_name);
|
utf8 = fs_charset_to_utf8(ent->d_name);
|
||||||
if (utf8 == NULL || skip_symlink(directory, utf8)) {
|
if (utf8 == NULL)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (skip_symlink(directory, utf8)) {
|
||||||
|
delete_name_in(directory, utf8);
|
||||||
g_free(utf8);
|
g_free(utf8);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user