From: David Sommerseth Date: Tue, 21 Feb 2017 19:27:35 +0000 (+0100) Subject: dev-tools: lz4-rebaser tool carried a typo X-Git-Tag: v2.5_beta1~742 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=40d6d471ff72e6a5e46911a3205f8e4401f506a3;p=thirdparty%2Fopenvpn.git 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 Acked-by: Gert Doering 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 --- diff --git a/dev-tools/lz4-rebaser.sh b/dev-tools/lz4-rebaser.sh index 8a45ffdbd..4ef4de8ff 100755 --- a/dev-tools/lz4-rebaser.sh +++ b/dev-tools/lz4-rebaser.sh @@ -50,7 +50,7 @@ echo "* Porting upstream lz4.c to compat-lz4.c" /* This file has been backported by $0 * from upstream lz4 commit $lz4_commit ($lz4_tag) */ -ifdef HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #elif defined(_MSC_VER) #include "config-msvc.h"