Merge pull request #44 from mutability/fix-obinary
Only use O_BINARY on Win32
This commit is contained in:
commit
bf111360bc
|
@ -710,7 +710,13 @@ int main(int argc, char **argv) {
|
||||||
} else {
|
} else {
|
||||||
if (Modes.filename[0] == '-' && Modes.filename[1] == '\0') {
|
if (Modes.filename[0] == '-' && Modes.filename[1] == '\0') {
|
||||||
Modes.fd = STDIN_FILENO;
|
Modes.fd = STDIN_FILENO;
|
||||||
} else if ((Modes.fd = open(Modes.filename, (O_RDONLY | O_BINARY))) == -1) {
|
} else if ((Modes.fd = open(Modes.filename,
|
||||||
|
#ifdef _WIN32
|
||||||
|
(O_RDONLY | O_BINARY)
|
||||||
|
#else
|
||||||
|
(O_RDONLY)
|
||||||
|
#endif
|
||||||
|
)) == -1) {
|
||||||
perror("Opening data file");
|
perror("Opening data file");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue