blob: c9260123f9d6dca536cfcd02a7ad309a97136ef2 (
plain)
1
2
3
4
5
6
7
|
-- source include/have_ssl_communication.inc
let $crllen=`select length(trim(coalesce(@@ssl_crl, ''))) + length(trim(coalesce(@@ssl_crlpath, '')))`;
if (!$crllen)
{
skip Needs OpenSSL;
}
|