From c862b65192f7983bb7e1cf46f4e807e858b99204 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Thu, 19 Aug 2021 15:33:27 +0100 Subject: [PATCH] tests: fix error message about missing ocserv Signed-off-by: Luca Boccassi --- tests/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/common.sh b/tests/common.sh index 315ce0f..5fbe882 100644 --- a/tests/common.sh +++ b/tests/common.sh @@ -30,7 +30,7 @@ if test -z "${OPENCONNECT}" || ! test -x ${OPENCONNECT};then fi if test -z "${OCSERV}" || ! test -x ${OCSERV};then - echo "You need openconnect to run this test" + echo "You need ocserv to run this test" exit 1 fi -- 2.50.1