Fix ssl-opt.sh not starting when lsof is not available

$START_DELAY was used before it was defined.
diff --git a/tests/ssl-opt.sh b/tests/ssl-opt.sh
index 2f8ea4f..8fde32f 100755
--- a/tests/ssl-opt.sh
+++ b/tests/ssl-opt.sh
@@ -308,7 +308,7 @@
         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"
     }