aboutsummaryrefslogtreecommitdiffstats
path: root/mergecap.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-06-23 10:32:36 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-06-23 10:32:36 +0000
commitbfd26685687386cb09c5f6b2a71257677d489a89 (patch)
tree8ec2f7762a234f23f5b362bf99e86c209e43195a /mergecap.c
parentb2560416c80ac31b6658de7966e8baa81f98c0e6 (diff)
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>. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5742 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'mergecap.c')
-rw-r--r--mergecap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mergecap.c b/mergecap.c
index 74902a60c1..e51ffc4869 100644
--- a/mergecap.c
+++ b/mergecap.c
@@ -1,6 +1,6 @@
/* Combine two dump files, either by appending or by merging by timestamp
*
- * $Id: mergecap.c,v 1.8 2002/03/31 20:59:47 guy Exp $
+ * $Id: mergecap.c,v 1.9 2002/06/23 10:32:16 guy Exp $
*
* Written by Scott Renfro <scott@renfro.org> based on
* editcap by Richard Sharpe and Guy Harris
@@ -23,8 +23,8 @@
#include <sys/time.h>
#endif
-#ifdef HAVE_WINSOCK_H
-#include <winsock.h>
+#ifdef HAVE_WINSOCK2_H
+#include <winsock2.h>
#endif
#include <string.h>