mirror of
https://github.com/samba-team/samba.git
synced 2025-01-17 02:05:21 +03:00
r6473: Fix for bug #2644 - test for special files to be ignored was reversed.
Jeremy.
This commit is contained in:
parent
03ebf3ebfe
commit
7c173dec2e
@ -946,7 +946,7 @@ BOOL is_visible_file(connection_struct *conn, const char *dir_path, const char *
|
||||
return False;
|
||||
}
|
||||
/* Honour _hide_special_ option */
|
||||
if (hide_special && !file_is_special(conn, entry, pst)) {
|
||||
if (hide_special && file_is_special(conn, entry, pst)) {
|
||||
SAFE_FREE(entry);
|
||||
return False;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user