From: Adam Dickmeiss Date: Tue, 3 Nov 1998 10:16:11 +0000 (+0000) Subject: Uses stat and not lstat so that file traversal follows symbolic links. X-Git-Tag: ZEBRA.1.0~153 X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=commitdiff_plain;h=35590968609f84a4ac4f4965c7b359cf06640491 Uses stat and not lstat so that file traversal follows symbolic links. --- 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: