From a24b176c32f78abc72f75819bb463aa60bd6729a Mon Sep 17 00:00:00 2001 From: Ulf Lamping Date: Tue, 29 Jun 2004 20:51:26 +0000 Subject: define of O_BINARY not needed, if fcntl.h is included other #include related cleanups svn path=/trunk/; revision=11272 --- wiretap/file_access.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'wiretap') diff --git a/wiretap/file_access.c b/wiretap/file_access.c index 23ecfd372d..82ea2121a4 100644 --- a/wiretap/file_access.c +++ b/wiretap/file_access.c @@ -1,6 +1,6 @@ /* file_access.c * - * $Id: file_access.c,v 1.12 2004/04/28 05:47:33 guy Exp $ + * $Id: file_access.c,v 1.13 2004/06/29 20:46:29 ulfl Exp $ * * Wiretap Library * Copyright (c) 1998 by Gilbert Ramirez @@ -207,11 +207,6 @@ wtap* wtap_open_offline(const char *filename, int *err, char **err_info, return NULL; } -/* Win32 needs the O_BINARY flag for open() */ -#ifndef O_BINARY -#define O_BINARY 0 -#endif - /* Open the file */ errno = WTAP_ERR_CANT_OPEN; wth->fd = open(filename, O_RDONLY|O_BINARY); -- cgit v1.2.3