aboutsummaryrefslogtreecommitdiffstats
path: root/ringbuffer.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2004-06-29 20:51:26 +0000
committerUlf Lamping <ulf.lamping@web.de>2004-06-29 20:51:26 +0000
commita24b176c32f78abc72f75819bb463aa60bd6729a (patch)
tree9b79f904d1c0d7c0b3db3e0274db9fd72ff440c0 /ringbuffer.c
parenta08161a110dcdfd6e19027b2e4db6c3fc3c26910 (diff)
define of O_BINARY not needed, if fcntl.h is included
other #include related cleanups svn path=/trunk/; revision=11272
Diffstat (limited to 'ringbuffer.c')
-rw-r--r--ringbuffer.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/ringbuffer.c b/ringbuffer.c
index 0828449461..85fb5e2e65 100644
--- a/ringbuffer.c
+++ b/ringbuffer.c
@@ -1,7 +1,7 @@
/* ringbuffer.c
* Routines for packet capture windows
*
- * $Id: ringbuffer.c,v 1.10 2004/06/02 18:49:40 guy Exp $
+ * $Id: ringbuffer.c,v 1.11 2004/06/29 20:51:26 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -76,11 +76,6 @@
#include "wiretap/wtap.h"
#include "ringbuffer.h"
-/* Win32 needs the O_BINARY flag for open() */
-#ifndef O_BINARY
-#define O_BINARY 0
-#endif
-
/* Ringbuffer file structure */
typedef struct _rb_file {
gchar *name;