aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon Rozman2018-04-13 17:55:17 +0200
committerGert Doering2018-10-07 09:48:10 +0200
commit3b7c7858dddc0ddd492acb9d1316e2dd42a807bf (patch)
treec2315d1385db7eda26b8769095f76dd0f29f93cb /src
parent632af53a515aa1570028f9f82e4b11ab7171f3a3 (diff)
downloadopenvpn-3b7c7858dddc0ddd492acb9d1316e2dd42a807bf.zip
openvpn-3b7c7858dddc0ddd492acb9d1316e2dd42a807bf.tar.gz
Change quoted to angled form when #including external .h files
Acked-by: Gert Doering <gert@greenie.muc.de> Message-Id: <20180413155517.895-1-simon@rozman.si> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg16760.html Signed-off-by: Gert Doering <gert@greenie.muc.de>
Diffstat (limited to 'src')
-rw-r--r--src/openvpn/comp-lz4.c2
-rw-r--r--src/openvpn/lzo.h8
-rw-r--r--src/openvpn/memdbg.h4
3 files changed, 7 insertions, 7 deletions
diff --git a/src/openvpn/comp-lz4.c b/src/openvpn/comp-lz4.c
index f2916bd..f52fdbf 100644
--- a/src/openvpn/comp-lz4.c
+++ b/src/openvpn/comp-lz4.c
@@ -35,7 +35,7 @@
#if defined(NEED_COMPAT_LZ4)
#include "compat-lz4.h"
#else
-#include "lz4.h"
+#include <lz4.h>
#endif
#include "comp.h"
diff --git a/src/openvpn/lzo.h b/src/openvpn/lzo.h
index 11e1c39..453cd8e 100644
--- a/src/openvpn/lzo.h
+++ b/src/openvpn/lzo.h
@@ -39,14 +39,14 @@
*/
#if defined(HAVE_LZO_LZOUTIL_H)
-#include "lzo/lzoutil.h"
+#include <lzo/lzoutil.h>
#elif defined(HAVE_LZOUTIL_H)
-#include "lzoutil.h"
+#include <lzoutil.h>
#endif
#if defined(HAVE_LZO_LZO1X_H)
-#include "lzo/lzo1x.h"
+#include <lzo/lzo1x.h>
#elif defined(HAVE_LZO1X_H)
-#include "lzo1x.h"
+#include <lzo1x.h>
#endif
#include "buffer.h"
diff --git a/src/openvpn/memdbg.h b/src/openvpn/memdbg.h
index 70c6365..6da9712 100644
--- a/src/openvpn/memdbg.h
+++ b/src/openvpn/memdbg.h
@@ -44,7 +44,7 @@
#ifdef USE_VALGRIND
-#include "valgrind/memcheck.h"
+#include <valgrind/memcheck.h>
#define VALGRIND_MAKE_READABLE(addr, len)
@@ -84,7 +84,7 @@
* #define INTERNAL_MEMORY_SPACE (1024 * 1024 * 50)
*/
-#include "dmalloc.h"
+#include <dmalloc.h>
#define openvpn_dmalloc(file, line, size) dmalloc_malloc((file), (line), (size), DMALLOC_FUNC_MALLOC, 0, 0)