aboutsummaryrefslogtreecommitdiffstats
path: root/capture.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1999-09-11 06:23:28 +0000
committerGuy Harris <guy@alum.mit.edu>1999-09-11 06:23:28 +0000
commit4c6f416754513b9e4e6a6d436be47df8794afd40 (patch)
treed9a01862eeed947f6ea7a1d11ff8015905487137 /capture.c
parent72a668a88a6cbff1595c71cfdb13fc611a31ab66 (diff)
downloadwireshark-4c6f416754513b9e4e6a6d436be47df8794afd40.tar.gz
wireshark-4c6f416754513b9e4e6a6d436be47df8794afd40.tar.bz2
wireshark-4c6f416754513b9e4e6a6d436be47df8794afd40.zip
"capture.c" doesn't do socket "ioctl"s any more - the code to do that is
now in "gtk/capture_dlg.c" - so it doesn't need to include <sys/sockio.h> on, for example, Solaris... ...but "gtk/capture_dlg.c" does need to include it. "gtk/capture_dlg.c" also may need to include "snprintf.h", as it uses "snprintf()". svn path=/trunk/; revision=655
Diffstat (limited to 'capture.c')
-rw-r--r--capture.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/capture.c b/capture.c
index 0c8e22bf75..9ad3996107 100644
--- a/capture.c
+++ b/capture.c
@@ -1,7 +1,7 @@
/* capture.c
* Routines for packet capture windows
*
- * $Id: capture.c,v 1.66 1999/09/09 03:31:49 gram Exp $
+ * $Id: capture.c,v 1.67 1999/09/11 06:23:22 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -73,10 +73,6 @@
# include "snprintf.h"
#endif
-#ifdef HAVE_SYS_SOCKIO_H
-# include <sys/sockio.h>
-#endif
-
#include "gtk/main.h"
#include "packet.h"
#include "file.h"