X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Fdir.c;h=41b7f1b0668f74fa193dd012169ce00728cd250a;hb=ecf94fc25324414287d3bbfbeba4440e558edd17;hp=3019221da34e10c605d35103cb93e1a306e2218b;hpb=bffe75e40b5c2e0668d58e7a30f8e4797578cba0;p=idzebra-moved-to-github.git diff --git a/index/dir.c b/index/dir.c index 3019221..41b7f1b 100644 --- a/index/dir.c +++ b/index/dir.c @@ -1,6 +1,6 @@ -/* $Id: dir.c,v 1.25 2002-09-03 12:22:21 adam Exp $ - Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002 - Index Data Aps +/* $Id: dir.c,v 1.30 2005-01-15 19:38:24 adam Exp $ + Copyright (C) 1995-2005 + Index Data ApS This file is part of the Zebra server. @@ -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; @@ -66,10 +66,10 @@ 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); + yaz_log (YLOG_DEBUG, "dir_open %s", full_rep); if (!(dir = opendir(full_rep))) { - logf (LOG_WARN|LOG_ERRNO, "opendir %s", rep); + yaz_log (YLOG_WARN|YLOG_ERRNO, "opendir %s", rep); if (errno != ENOENT && errno != EACCES) exit (1); return NULL; @@ -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 || @@ -127,7 +127,7 @@ struct dir_entry *dir_open (const char *rep, const char *base, } entry[idx].name = NULL; closedir (dir); - logf (LOG_DEBUG, "dir_close"); + yaz_log (YLOG_DEBUG, "dir_close"); return entry; }