Revert previous commit; it broke large file support on platforms that

had it to begin with (e.g., the Alpha).

Submitted by:	bde
This commit is contained in:
Dima Dorfman 2001-07-02 22:51:33 +00:00
parent e42ad56f1a
commit 561aef9a69
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ s_stab(fn, fd, ep)
}
/* Check size. */
if (sb.st_size > (unsigned)SIZE_T_MAX) {
if (sb.st_size > SIZE_T_MAX) {
warnx("%s: %s", fn, strerror(EFBIG));
err_val = 1;
return;