aboutsummaryrefslogtreecommitdiffstats
path: root/capture.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2004-06-29 20:51:26 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2004-06-29 20:51:26 +0000
commitfb8d9e5a065a29db0e43c5e5e0fc54f3767de768 (patch)
tree9b79f904d1c0d7c0b3db3e0274db9fd72ff440c0 /capture.c
parentbba9576f8040b08ddeadf10595ef5944e8b6e791 (diff)
define of O_BINARY not needed, if fcntl.h is included
other #include related cleanups git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11272 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'capture.c')
-rw-r--r--capture.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/capture.c b/capture.c
index 2c52dc63a9..f1de16baad 100644
--- a/capture.c
+++ b/capture.c
@@ -1,7 +1,7 @@
/* capture.c
* Routines for packet capture windows
*
- * $Id: capture.c,v 1.252 2004/06/20 13:39:43 ulfl Exp $
+ * $Id: capture.c,v 1.253 2004/06/29 20:51:26 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -219,11 +219,6 @@ typedef struct _loop_data {
#endif
} loop_data;
-/* Win32 needs the O_BINARY flag for open() */
-#ifndef O_BINARY
-#define O_BINARY 0
-#endif
-
static gboolean sync_pipe_do_capture(gboolean is_tempfile);
static gboolean sync_pipe_input_cb(gint source, gpointer user_data);