diff options
author | Guy Harris <guy@alum.mit.edu> | 1999-09-11 06:23:28 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 1999-09-11 06:23:28 +0000 |
commit | 4c6f416754513b9e4e6a6d436be47df8794afd40 (patch) | |
tree | d9a01862eeed947f6ea7a1d11ff8015905487137 /capture.c | |
parent | 72a668a88a6cbff1595c71cfdb13fc611a31ab66 (diff) | |
download | wireshark-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.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -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" |