View | Details | Raw Unified | Return to bug 144446 | Differences between
and this patch

Collapse All | Expand All

(-)hash/hash.c (+2 lines)
Lines 293-298 Link Here
293
		if (stat(file, &statbuf))
293
		if (stat(file, &statbuf))
294
			return (NULL);
294
			return (NULL);
295
		hashp->BSIZE = statbuf.st_blksize;
295
		hashp->BSIZE = statbuf.st_blksize;
296
		if (hashp->BSIZE > MAX_BSIZE)
297
			hashp->BSIZE = MAX_BSIZE;
296
		hashp->BSHIFT = __log2(hashp->BSIZE);
298
		hashp->BSHIFT = __log2(hashp->BSIZE);
297
	}
299
	}
298
300

Return to bug 144446