COMP: Only do O_BINARY on windows

This commit is contained in:
Andy Cedilnik 2005-12-28 13:35:54 -05:00
parent 3d7939b1c3
commit cbc6fee109
1 changed files with 4 additions and 0 deletions

View File

@ -231,7 +231,11 @@ tar_append_regfile(TAR *t, char *realname)
int i, j;
size_t size;
#ifdef _WIN32
filefd = open(realname, O_RDONLY | O_BINARY);
#else
filefd = open(realname, O_RDONLY);
#endif
if (filefd == -1)
{
#ifdef DEBUG