Eric Blake <[email protected]> ha escrit: > tar should always use fseeko, not fseek, to avoid arbitrary limits > on 32-bit platforms.
Yes, it should. Thanks for the patch. However, I'd say it's second part: > - if (fseek (fp, 0L, SEEK_SET) != 0) > + if (fseeko (fp, 0L, SEEK_SET) != 0) is superfluous. When searching for 0, it makes no difference which function to use. Regards, Sergey
