Fix HAVE_BROKEN_RESTART logic.

Fix hash.h typos (only noticed when using Windows).
Update .cvsignore files.
This commit is contained in:
Paul Smith
2002-09-11 16:55:44 +00:00
parent 5df75e7265
commit 4a11acf047
10 changed files with 44 additions and 9 deletions

4
misc.c
View File

@@ -879,11 +879,11 @@ atomic_stat(file, buf)
struct dirent *
atomic_readdir(dir)
DIR *file;
DIR *dir;
{
struct dirent *r;
while ((r = readdir (file, buf)) == NULL)
while ((r = readdir (dir)) == NULL)
if (errno != EINTR)
break;