Commit e106de49 authored by Wayne Davison's avatar Wayne Davison

Tweaked the O_BINARY code to the latest idiom.

parent afbcc8f2
......@@ -85,14 +85,10 @@ int do_open(char *pathname, int flags, mode_t mode)
if (dry_run) return -1;
CHECK_RO
}
#ifdef O_BINARY
/* for Windows */
flags |= O_BINARY;
#endif
/* some systems can't handle a double / */
if (pathname[0] == '/' && pathname[1] == '/') pathname++;
return open(pathname, flags, mode);
return open(pathname, flags | O_BINARY, mode);
}
#if HAVE_CHMOD
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment