aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2012-07-18 02:47:56 +0000
committerEvan Huus <eapache@gmail.com>2012-07-18 02:47:56 +0000
commita234b68ff0a16c689c3c8c6064266ff9cf94db7b (patch)
tree94218d966dc63303419a7b1fa6bc142654c565b0
parent6e8258be9a7d525eb5ec00335dff7d025496bd73 (diff)
Fix some system header files that were #included with "" instead of <>.
They made cppcheck unhappy. svn path=/trunk/; revision=43779
-rw-r--r--epan/crypt/airpdcap_debug.h2
-rw-r--r--epan/dissectors/packet-ip.c2
-rw-r--r--epan/dissectors/packet-ipv6.c2
-rw-r--r--epan/geoip_db.c4
-rw-r--r--epan/wslua/lua_bitop.c4
-rw-r--r--nio-ie5.c2
-rw-r--r--ui/gtk/hostlist_table.c2
-rw-r--r--ui/gtk/new_packet_list.c2
-rw-r--r--ui/gtk/rtp_player.c2
-rw-r--r--ui/gtk/text_import.h2
-rw-r--r--wsutil/crc16-plain.c2
-rw-r--r--wsutil/crc16-plain.h2
12 files changed, 14 insertions, 14 deletions
diff --git a/epan/crypt/airpdcap_debug.h b/epan/crypt/airpdcap_debug.h
index 224bf54d7e..8d052e648f 100644
--- a/epan/crypt/airpdcap_debug.h
+++ b/epan/crypt/airpdcap_debug.h
@@ -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 */
diff --git a/epan/dissectors/packet-ip.c b/epan/dissectors/packet-ip.c
index 523df5a4ae..14bf19b2a1 100644
--- a/epan/dissectors/packet-ip.c
+++ b/epan/dissectors/packet-ip.c
@@ -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 */
diff --git a/epan/dissectors/packet-ipv6.c b/epan/dissectors/packet-ipv6.c
index 5de4433ac7..9348ef75eb 100644
--- a/epan/dissectors/packet-ipv6.c
+++ b/epan/dissectors/packet-ipv6.c
@@ -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 */
diff --git a/epan/geoip_db.c b/epan/geoip_db.c
index 1bafbc3169..ab723af889 100644
--- a/epan/geoip_db.c
+++ b/epan/geoip_db.c
@@ -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"
diff --git a/epan/wslua/lua_bitop.c b/epan/wslua/lua_bitop.c
index 129eeac616..36804e2836 100644
--- a/epan/wslua/lua_bitop.c
+++ b/epan/wslua/lua_bitop.c
@@ -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. */
diff --git a/nio-ie5.c b/nio-ie5.c
index 19267bf9e5..6ad3311da6 100644
--- a/nio-ie5.c
+++ b/nio-ie5.c
@@ -24,7 +24,7 @@
#include <wininet.h>
#include "nio-ie5.h"
-#include "glib.h"
+#include <glib.h>
static HINTERNET internet = 0;
diff --git a/ui/gtk/hostlist_table.c b/ui/gtk/hostlist_table.c
index 53502d9a03..9a9e98c8bc 100644
--- a/ui/gtk/hostlist_table.c
+++ b/ui/gtk/hostlist_table.c
@@ -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>
diff --git a/ui/gtk/new_packet_list.c b/ui/gtk/new_packet_list.c
index 44537ac1ba..254ffd5116 100644
--- a/ui/gtk/new_packet_list.c
+++ b/ui/gtk/new_packet_list.c
@@ -29,7 +29,7 @@
#include "config.h"
#endif
-#include "string.h"
+#include <string.h>
#include <stdio.h>
#include <gtk/gtk.h>
diff --git a/ui/gtk/rtp_player.c b/ui/gtk/rtp_player.c
index bbe2d76149..4380f4f976 100644
--- a/ui/gtk/rtp_player.c
+++ b/ui/gtk/rtp_player.c
@@ -58,7 +58,7 @@
#ifdef HAVE_LIBPORTAUDIO
#include <math.h>
#include <string.h>
-#include "portaudio.h"
+#include <portaudio.h>
#include <gtk/gtk.h>
diff --git a/ui/gtk/text_import.h b/ui/gtk/text_import.h
index 24a52fedcb..5ece3dadb7 100644
--- a/ui/gtk/text_import.h
+++ b/ui/gtk/text_import.h
@@ -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
diff --git a/wsutil/crc16-plain.c b/wsutil/crc16-plain.c
index 5b19a190bf..ac7678adbd 100644
--- a/wsutil/crc16-plain.c
+++ b/wsutil/crc16-plain.c
@@ -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>
diff --git a/wsutil/crc16-plain.h b/wsutil/crc16-plain.h
index f6593562af..63c6c714f7 100644
--- a/wsutil/crc16-plain.h
+++ b/wsutil/crc16-plain.h
@@ -20,7 +20,7 @@
#ifndef __CRC____PLAIN_H__
#define __CRC____PLAIN_H__
-#include "glib.h"
+#include <glib.h>
#include <stdlib.h>
#ifdef __cplusplus