Fix some system header files that were #included with "" instead of <>.

They made cppcheck unhappy.

svn path=/trunk/; revision=43779
This commit is contained in:
Evan Huus 2012-07-18 02:47:56 +00:00
parent 6e8258be9a
commit a234b68ff0
12 changed files with 14 additions and 14 deletions

View File

@ -59,7 +59,7 @@ void print_debug_line(CHAR *function, CHAR *msg, INT level);
/* Debug section: internal function to print debug information */ /* Debug section: internal function to print debug information */
/* */ /* */
#ifdef _DEBUG #ifdef _DEBUG
#include "stdio.h" #include <stdio.h>
#include <time.h> #include <time.h>
/* Debug level definition */ /* Debug level definition */

View File

@ -56,7 +56,7 @@
#include "packet-ipsec.h" #include "packet-ipsec.h"
#ifdef HAVE_GEOIP #ifdef HAVE_GEOIP
#include "GeoIP.h" #include <GeoIP.h>
#include <epan/geoip_db.h> #include <epan/geoip_db.h>
#endif /* HAVE_GEOIP */ #endif /* HAVE_GEOIP */

View File

@ -53,7 +53,7 @@
#include "packet-ip.h" #include "packet-ip.h"
#ifdef HAVE_GEOIP_V6 #ifdef HAVE_GEOIP_V6
#include "GeoIP.h" #include <GeoIP.h>
#include <epan/geoip_db.h> #include <epan/geoip_db.h>
#endif /* HAVE_GEOIP_V6 */ #endif /* HAVE_GEOIP_V6 */

View File

@ -36,8 +36,8 @@
#include <glib.h> #include <glib.h>
#ifdef HAVE_GEOIP #ifdef HAVE_GEOIP
#include "GeoIP.h" #include <GeoIP.h>
#include "GeoIPCity.h" #include <GeoIPCity.h>
#include "geoip_db.h" #include "geoip_db.h"
#include "uat.h" #include "uat.h"

View File

@ -31,8 +31,8 @@
#define LUA_BITOP_VERSION "1.0.1" #define LUA_BITOP_VERSION "1.0.1"
#define LUA_LIB #define LUA_LIB
#include "lua.h" #include <lua.h>
#include "lauxlib.h" #include <lauxlib.h>
#ifdef _MSC_VER #ifdef _MSC_VER
/* MSVC is stuck in the last century and doesn't have C99's stdint.h. */ /* MSVC is stuck in the last century and doesn't have C99's stdint.h. */

View File

@ -24,7 +24,7 @@
#include <wininet.h> #include <wininet.h>
#include "nio-ie5.h" #include "nio-ie5.h"
#include "glib.h" #include <glib.h>
static HINTERNET internet = 0; static HINTERNET internet = 0;

View File

@ -41,7 +41,7 @@
#include <epan/tap.h> #include <epan/tap.h>
#include <epan/strutil.h> #include <epan/strutil.h>
#ifdef HAVE_GEOIP #ifdef HAVE_GEOIP
#include "GeoIP.h" #include <GeoIP.h>
#include <epan/geoip_db.h> #include <epan/geoip_db.h>
#include <epan/pint.h> #include <epan/pint.h>
#include <epan/filesystem.h> #include <epan/filesystem.h>

View File

@ -29,7 +29,7 @@
#include "config.h" #include "config.h"
#endif #endif
#include "string.h" #include <string.h>
#include <stdio.h> #include <stdio.h>
#include <gtk/gtk.h> #include <gtk/gtk.h>

View File

@ -58,7 +58,7 @@
#ifdef HAVE_LIBPORTAUDIO #ifdef HAVE_LIBPORTAUDIO
#include <math.h> #include <math.h>
#include <string.h> #include <string.h>
#include "portaudio.h" #include <portaudio.h>
#include <gtk/gtk.h> #include <gtk/gtk.h>

View File

@ -31,7 +31,7 @@
#ifndef TEXT_IMPORT_H #ifndef TEXT_IMPORT_H
#define TEXT_IMPORT_H #define TEXT_IMPORT_H
#include "glib.h" #include <glib.h>
#include "wtap.h" #include "wtap.h"
#define IMPORT_MAX_PACKET 64000 #define IMPORT_MAX_PACKET 64000

View File

@ -18,7 +18,7 @@
* Modified 2009-03-16 not to include <stdint.h> as our Win32 environment * Modified 2009-03-16 not to include <stdint.h> as our Win32 environment
* appears not to have it; we're using GLib types, instead. * appears not to have it; we're using GLib types, instead.
*****************************************************************************/ *****************************************************************************/
#include "glib.h" #include <glib.h>
#include "wsutil/crc16-plain.h" #include "wsutil/crc16-plain.h"
#include <stdlib.h> #include <stdlib.h>

View File

@ -20,7 +20,7 @@
#ifndef __CRC____PLAIN_H__ #ifndef __CRC____PLAIN_H__
#define __CRC____PLAIN_H__ #define __CRC____PLAIN_H__
#include "glib.h" #include <glib.h>
#include <stdlib.h> #include <stdlib.h>
#ifdef __cplusplus #ifdef __cplusplus