X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Fdir.c;h=868740eae845cc67ea13e6411e583e2c33d7b752;hb=d284fe71faaa02d3e066d7f1db7d884fe0f8b0ee;hp=935a860e4b366c48785b92f65802e2b73e629dfa;hpb=7b4417cdb8241d4502f531dadc0aa23f0cc46606;p=idzebra-moved-to-github.git diff --git a/index/dir.c b/index/dir.c index 935a860..868740e 100644 --- a/index/dir.c +++ b/index/dir.c @@ -1,4 +1,4 @@ -/* $Id: dir.c,v 1.26 2002-09-06 10:28:02 adam Exp $ +/* $Id: dir.c,v 1.28 2003-01-13 22:37:12 adam Exp $ Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002 Index Data Aps @@ -52,7 +52,7 @@ struct dir_entry *dir_open (const char *rep, const char *base, char path[1024]; char full_rep[1024]; size_t pathpos; - struct dirent *dent; + struct dirent dent_s, *dent = &dent_s; size_t entry_max = 500; size_t idx = 0; struct dir_entry *entry; @@ -79,7 +79,7 @@ struct dir_entry *dir_open (const char *rep, const char *base, pathpos = strlen(path); if (!pathpos || path[pathpos-1] != '/') path[pathpos++] = '/'; - while ((dent = readdir (dir))) + while ( (dent = readdir (dir)) ) { struct stat finfo; if (strcmp (dent->d_name, ".") == 0 ||