From 0459e9842e9de4335cc102a45922122678120eee Mon Sep 17 00:00:00 2001 From: John Safranek Date: Thu, 17 Jan 2019 11:36:44 -0800 Subject: [PATCH] OCSP Script Update The check status variable GL_UNREACHABLE is not initialized and there are times when it is checked and hasn't been set. Initialize it to zero. --- scripts/ocsp.test | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/ocsp.test b/scripts/ocsp.test index f637efffe..543705617 100755 --- a/scripts/ocsp.test +++ b/scripts/ocsp.test @@ -15,6 +15,7 @@ if [ $? -eq 0 ]; then exit 0 fi +GL_UNREACHABLE=0 # Global Sign now requires server name indication extension to work, check # enabled prior to testing OUTPUT=$(eval "./examples/client/client -S check")