From: Simon Rozman Date: Fri, 13 Apr 2018 15:55:17 +0000 (+0200) Subject: Change quoted to angled form when #including external .h files X-Git-Tag: v2.5_beta1~422 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3b7c7858dddc0ddd492acb9d1316e2dd42a807bf;p=thirdparty%2Fopenvpn.git Change quoted to angled form when #including external .h files Acked-by: Gert Doering 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 --- diff --git a/src/openvpn/comp-lz4.c b/src/openvpn/comp-lz4.c index f2916bdde..f52fdbfb1 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 #endif #include "comp.h" diff --git a/src/openvpn/lzo.h b/src/openvpn/lzo.h index 11e1c39fd..453cd8eea 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 #elif defined(HAVE_LZOUTIL_H) -#include "lzoutil.h" +#include #endif #if defined(HAVE_LZO_LZO1X_H) -#include "lzo/lzo1x.h" +#include #elif defined(HAVE_LZO1X_H) -#include "lzo1x.h" +#include #endif #include "buffer.h" diff --git a/src/openvpn/memdbg.h b/src/openvpn/memdbg.h index 70c6365d3..6da9712b2 100644 --- a/src/openvpn/memdbg.h +++ b/src/openvpn/memdbg.h @@ -44,7 +44,7 @@ #ifdef USE_VALGRIND -#include "valgrind/memcheck.h" +#include #define VALGRIND_MAKE_READABLE(addr, len) @@ -84,7 +84,7 @@ * #define INTERNAL_MEMORY_SPACE (1024 * 1024 * 50) */ -#include "dmalloc.h" +#include #define openvpn_dmalloc(file, line, size) dmalloc_malloc((file), (line), (size), DMALLOC_FUNC_MALLOC, 0, 0)