From dd9a4f0ecf06e907c57f4fa7ab035b897268d54a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuli=20Sepp=C3=A4nen?= Date: Wed, 9 Nov 2016 14:42:05 +0200 Subject: [PATCH] Fix a logic problem in handling of --up scripts in t_client.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previously the $up variable was never reset after being set. This mean that "--up update_t_client_ips.sh" was appended to all subsequent openvpn command-lines, even if cached IPs existed. Signed-off-by: Samuli Seppänen Acked-by: Gert Doering Message-Id: <1478695325-18038-1-git-send-email-samuli@openvpn.net> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg12979.html Signed-off-by: Gert Doering --- tests/t_client.sh.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/t_client.sh.in b/tests/t_client.sh.in index 076f6bd8..b92cb65d 100755 --- a/tests/t_client.sh.in +++ b/tests/t_client.sh.in @@ -276,6 +276,8 @@ do # script to generate them dynamically. if [ -z "$expect_ifconfig4" ] || [ -z "$expect_ifconfig6" ]; then up="--setenv TESTNUM $SUF --setenv TOP_BUILDDIR ${top_builddir} --script-security 2 --up ${srcdir}/update_t_client_ips.sh" + else + up="" fi echo -e "\n### test run $SUF: '$test_run_title' ###\n"