Portability: Include O_BINARY if the local platform defines it.

This commit is contained in:
Tim Kientzle 2008-02-19 05:46:58 +00:00
parent f167d4f9c3
commit 98ef1f2ddb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=176399

View File

@ -47,6 +47,10 @@ __FBSDID("$FreeBSD$");
#include "archive.h"
#ifndef O_BINARY
#define O_BINARY 0
#endif
struct write_file_data {
int fd;
char filename[1];
@ -95,7 +99,7 @@ file_open(struct archive *a, void *client_data)
struct stat st;
mine = (struct write_file_data *)client_data;
flags = O_WRONLY | O_CREAT | O_TRUNC;
flags = O_WRONLY | O_CREAT | O_TRUNC | O_BINARY;
/*
* Open the file.