Ver Fonte

COMP: Only do O_BINARY on windows

Andy Cedilnik há 20 anos atrás
pai
commit
cbc6fee109
1 ficheiros alterados com 4 adições e 0 exclusões
  1. 4 0
      Utilities/cmtar/append.c

+ 4 - 0
Utilities/cmtar/append.c

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