diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-06-23 10:32:36 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-06-23 10:32:36 +0000 |
commit | 73ef5a2753c0c585f45b0f1ba014e455907d417f (patch) | |
tree | 8ec2f7762a234f23f5b362bf99e86c209e43195a /text2pcap.c | |
parent | 6ef2cc2b1f65e7d6b02a7ac32bf0ae5dc0d29f5c (diff) | |
download | wireshark-73ef5a2753c0c585f45b0f1ba014e455907d417f.tar.gz wireshark-73ef5a2753c0c585f45b0f1ba014e455907d417f.tar.bz2 wireshark-73ef5a2753c0c585f45b0f1ba014e455907d417f.zip |
WinPcap 2.3's <pcap.h> includes <packet32.h>, and WinPcap 2.3's
<packet32.h> includes <winsock2.h>; we include that rather than
<winsock.h>, to avoid errors due to conflicting declarations in
<winsock.h> and <winsock2.h>.
svn path=/trunk/; revision=5742
Diffstat (limited to 'text2pcap.c')
-rw-r--r-- | text2pcap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/text2pcap.c b/text2pcap.c index 5814a959d4..1fa2084a89 100644 --- a/text2pcap.c +++ b/text2pcap.c @@ -6,7 +6,7 @@ * * (c) Copyright 2001 Ashok Narayanan <ashokn@cisco.com> * - * $Id: text2pcap.c,v 1.16 2002/04/15 21:53:55 guy Exp $ + * $Id: text2pcap.c,v 1.17 2002/06/23 10:32:18 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -101,8 +101,8 @@ #ifdef HAVE_NETINET_IN_H # include <netinet/in.h> #endif -#ifdef HAVE_WINSOCK_H -# include <winsock.h> +#ifdef HAVE_WINSOCK2_H +# include <winsock2.h> #endif #include <errno.h> #include <assert.h> |