|
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 |
|