From 35590968609f84a4ac4f4965c7b359cf06640491 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 3 Nov 1998 10:16:11 +0000 Subject: [PATCH] Uses stat and not lstat so that file traversal follows symbolic links. --- index/dir.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/index/dir.c b/index/dir.c index aae6066..c4201c6 100644 --- a/index/dir.c +++ b/index/dir.c @@ -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: -- 1.7.10.4