summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <guilhem@mysql.com>2004-07-05 19:12:23 +0200
committerunknown <guilhem@mysql.com>2004-07-05 19:12:23 +0200
commit2a64371e649666d54d66193bb52e4d430fe800b8 (patch)
tree5e523835b65d14282e3a38631f89caee985f4213
parentbdb3460fede3bf71416aca23b5b5490a87fe5097 (diff)
downloadmariadb-git-2a64371e649666d54d66193bb52e4d430fe800b8.tar.gz
my_lib.c:
more accurate comment mysys/my_lib.c: more accurate comment
-rw-r--r--mysys/my_lib.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/mysys/my_lib.c b/mysys/my_lib.c
index 21c558ed489..0207d9a3683 100644
--- a/mysys/my_lib.c
+++ b/mysys/my_lib.c
@@ -462,8 +462,10 @@ MY_DIR *my_dir(const char *path, myf MyFlags)
finfo.mystat= NULL;
/*
- Do not show hidden or system files which Windows sometimes creates. We
- would need to see how this can be achieved with a Borland compiler.
+ 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))