1
0
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:
Jeremy Allison 2005-04-25 23:15:48 +00:00 committed by Gerald (Jerry) Carter
parent 03ebf3ebfe
commit 7c173dec2e

View File

@ -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;
}