X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Fdir.c;h=eb468aef7b764e85067877a1f1508d5e9b212624;hb=afa71e9ea1ff3707654936324c30703a618852ff;hp=a987b0796824271ce40b54d8ea9af103eee78544;hpb=5437b50633032595afe6f87dc0f989bc92a5aea8;p=idzebra-moved-to-github.git diff --git a/index/dir.c b/index/dir.c index a987b07..eb468ae 100644 --- a/index/dir.c +++ b/index/dir.c @@ -1,6 +1,6 @@ -/* $Id: dir.c,v 1.29 2004-11-19 10:26:56 heikki Exp $ - Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002 - Index Data Aps +/* $Id: dir.c,v 1.33 2006-05-10 08:13:20 adam Exp $ + Copyright (C) 1995-2005 + Index Data ApS This file is part of the Zebra server. @@ -24,7 +24,7 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include #include #include -#ifndef WIN32 +#if HAVE_UNISTD_H #include #endif #include @@ -70,8 +70,6 @@ struct dir_entry *dir_open (const char *rep, const char *base, if (!(dir = opendir(full_rep))) { yaz_log (YLOG_WARN|YLOG_ERRNO, "opendir %s", rep); - if (errno != ENOENT && errno != EACCES) - exit (1); return NULL; } entry = (struct dir_entry *) xmalloc (sizeof(*entry) * entry_max); @@ -156,3 +154,11 @@ void dir_free (struct dir_entry **e_p) xfree (e); *e_p = NULL; } +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +