From a931265509d84c7e0684ff91162a4cb1dd70fb7d Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Fri, 29 Jun 2018 15:48:13 +0200 Subject: [PATCH] Fix ssl-opt.sh not starting when lsof is not available $START_DELAY was used before it was defined. --- tests/ssl-opt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ssl-opt.sh b/tests/ssl-opt.sh index 9faeb6703..91f16e1fa 100755 --- a/tests/ssl-opt.sh +++ b/tests/ssl-opt.sh @@ -308,7 +308,7 @@ if type lsof >/dev/null 2>/dev/null; then done } else - echo "Warning: lsof not available, wait_server_start = sleep $START_DELAY" + echo "Warning: lsof not available, wait_server_start = sleep" wait_server_start() { sleep "$START_DELAY" }