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

They made cppcheck unhappy.


git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@43779 f5534014-38df-0310-8fa8-9805f1628bb7
This commit is contained in:
eapache 2012-07-18 02:47:56 +00:00
parent 6c941e06fb
commit a506eecc97
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 */
/* */
#ifdef _DEBUG
#include "stdio.h"
#include <stdio.h>
#include <time.h>
/* Debug level definition */

View File

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

View File

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

View File

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

View File

@ -31,8 +31,8 @@
#define LUA_BITOP_VERSION "1.0.1"
#define LUA_LIB
#include "lua.h"
#include "lauxlib.h"
#include <lua.h>
#include <lauxlib.h>
#ifdef _MSC_VER
/* 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 "nio-ie5.h"
#include "glib.h"
#include <glib.h>
static HINTERNET internet = 0;

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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