X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Fdir.c;h=935a860e4b366c48785b92f65802e2b73e629dfa;hb=e868e46c150fd38e72a1d087ce5306bb7c715847;hp=db679d046afdc552123a73cee6ea6ccf2dbf1856;hpb=896c0427df9d8eff5de6a1735dcd992e067df844;p=idzebra-moved-to-github.git diff --git a/index/dir.c b/index/dir.c index db679d0..935a860 100644 --- a/index/dir.c +++ b/index/dir.c @@ -1,4 +1,4 @@ -/* $Id: dir.c,v 1.23 2002-08-02 19:26:55 adam Exp $ +/* $Id: dir.c,v 1.26 2002-09-06 10:28:02 adam Exp $ Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002 Index Data Aps @@ -28,14 +28,25 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include #endif #include -#include #include #include #include #include "index.h" -struct dir_entry *dir_open (const char *rep, const char *base) + +int zebra_file_stat (const char *file_name, struct stat *buf, + int follow_links) +{ +#ifndef WIN32 + if (!follow_links) + return lstat(file_name, buf); +#endif + return stat(file_name, buf); +} + +struct dir_entry *dir_open (const char *rep, const char *base, + int follow_links) { DIR *dir; char path[1024]; @@ -55,7 +66,7 @@ struct dir_entry *dir_open (const char *rep, const char *base) *full_rep = '\0'; strcat (full_rep, rep); - logf (LOG_LOG, "dir_open %s", full_rep); + logf (LOG_DEBUG, "dir_open %s", full_rep); if (!(dir = opendir(full_rep))) { logf (LOG_WARN|LOG_ERRNO, "opendir %s", rep); @@ -91,10 +102,10 @@ struct dir_entry *dir_open (const char *rep, const char *base) strcpy (full_rep, base); strcat (full_rep, "/"); strcat (full_rep, path); - stat (full_rep, &finfo); + zebra_file_stat (full_rep, &finfo, follow_links); } else - stat (path, &finfo); + zebra_file_stat (path, &finfo, follow_links); switch (finfo.st_mode & S_IFMT) { case S_IFREG: