Browse code

dev-tools: lz4-rebaser tool carried a typo

The HAVE_CONFIG_H block which gets added to compat-lz4.c was
missing a # before the first ifdef statement.

Signed-off-by: David Sommerseth <davids@openvpn.net>
Acked-by: Gert Doering <gert@greenie.muc.de>
Message-Id: <20170221192737.24166-2-davids@openvpn.net>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg14136.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>

David Sommerseth authored on 2017/02/22 04:27:35
Showing 1 changed files
... ...
@@ -50,7 +50,7 @@ echo "* Porting upstream lz4.c to compat-lz4.c"
50 50
 /* This file has been backported by $0
51 51
  * from upstream lz4 commit $lz4_commit ($lz4_tag)
52 52
  */
53
-ifdef HAVE_CONFIG_H
53
+#ifdef HAVE_CONFIG_H
54 54
 #include "config.h"
55 55
 #elif defined(_MSC_VER)
56 56
 #include "config-msvc.h"