Uses stat and not lstat so that file traversal follows symbolic links.
authorAdam Dickmeiss <adam@indexdata.dk>
Tue, 3 Nov 1998 10:16:11 +0000 (10:16 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Tue, 3 Nov 1998 10:16:11 +0000 (10:16 +0000)
index/dir.c

index aae6066..c4201c6 100644 (file)
@@ -1,10 +1,13 @@
 /*
- * Copyright (C) 1994-1996, Index Data I/S 
+ * Copyright (C) 1994-1998, Index Data
  * All rights reserved.
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: dir.c,v $
- * Revision 1.18  1997-09-25 14:55:33  adam
+ * Revision 1.19  1998-11-03 10:16:11  adam
+ * Uses stat and not lstat so that file traversal follows symbolic links.
+ *
+ * Revision 1.18  1997/09/25 14:55:33  adam
  * Windows port uses stat and not lstat.
  *
  * Revision 1.17  1997/09/09 13:38:06  adam
@@ -114,11 +117,7 @@ struct dir_entry *dir_open (const char *rep)
             entry = entry_n;
         }
         strcpy (path + pathpos, dent->d_name);
-#ifdef WINDOWS
         stat (path, &finfo);
-#else
-        lstat (path, &finfo);
-#endif
         switch (finfo.st_mode & S_IFMT)
         {
         case S_IFREG: