diff options
author | unknown <miguel@hegel.txg> | 2004-07-29 18:35:54 -0300 |
---|---|---|
committer | unknown <miguel@hegel.txg> | 2004-07-29 18:35:54 -0300 |
commit | 962d942c951a7b71f0e9ce0af8805403c53f4127 (patch) | |
tree | b356df244cc805e3d94d4837b32fc6721ac48232 /mysys/my_lib.c | |
parent | 2d2cf95ee3c74e9bb2fa5c881ba537bf06fabde3 (diff) | |
download | mariadb-git-962d942c951a7b71f0e9ce0af8805403c53f4127.tar.gz |
Fix for bug report #4737 and revert fix for bug #4375 (re-opened).
Diffstat (limited to 'mysys/my_lib.c')
-rw-r--r-- | mysys/my_lib.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/mysys/my_lib.c b/mysys/my_lib.c index 0207d9a3683..055e00d2efc 100644 --- a/mysys/my_lib.c +++ b/mysys/my_lib.c @@ -461,17 +461,6 @@ MY_DIR *my_dir(const char *path, myf MyFlags) else finfo.mystat= NULL; - /* - If the directory is the root directory of the drive, Windows sometimes - creates hidden or system files there (like RECYCLER); do not show - them. We would need to see how this can be achieved with a Borland - compiler. - */ -#ifndef __BORLANDC__ - if (attrib & (_A_HIDDEN | _A_SYSTEM)) - continue; -#endif - if (push_dynamic(dir_entries_storage, (gptr)&finfo)) goto error; |