Re: [tcpdump-workers] [Patch] libpcap, pcap-stdinc.h

2009-02-14 Thread Guy Harris


On Feb 12, 2009, at 12:28 PM, Gisle Vanem wrote:


* Added header-guard.

* Include IP6_misc.h unconditionally (why treat MingW specially?)


Checked in and pushed to the main Git branch.
-
This is the tcpdump-workers list.
Visit https://cod.sandelman.ca/ to unsubscribe.


[tcpdump-workers] [Patch] libpcap, pcap-stdinc.h

2009-02-12 Thread Gisle Vanem

* Added header-guard.

* Include IP6_misc.h unconditionally (why treat MingW specially?)

--gv

--- CVS-Latest/pcap-stdinc.h   Mon Oct 06 14:27:32 2008
+++ pcap-stdinc.hThu Feb 12 21:25:34 2009
@@ -30,6 +30,8 @@
 *
 * @(#) $Header: /tcpdump/master/libpcap/pcap-stdinc.h,v 1.11 2008-10-06 
15:27:32 gianluca Exp $ (LBL)
 */
+#ifndef pcap_stdinc_h
+#define pcap_stdinc_h

#define SIZEOF_CHAR 1
#define SIZEOF_SHORT 2
@@ -54,9 +56,7 @@
#include 
#include 

-#ifndef __MINGW32__
#include "IP6_misc.h"
-#endif

#define caddr_t char*

@@ -88,3 +88,4 @@
#endif

#endif /*__MINGW32__*/
+#endif /* pcap_stdinc_h */
-
This is the tcpdump-workers list.
Visit https://cod.sandelman.ca/ to unsubscribe.