Formerly dir.c.~12~

This commit is contained in:
Roland McGrath 1993-05-14 22:41:07 +00:00
parent bc0276c3cb
commit 03acd42408

4
dir.c
View file

@ -543,7 +543,9 @@ read_dirstream (stream)
if (!df->impossible)
return df->name;
}
ds->elt = ds->contents->files[++ds->bucket];
if (++ds->bucket == DIRFILE_BUCKETS)
break;
ds->elt = ds->contents->files[ds->bucket];
}
return 0;