When no cert specified using default, do not return failure in suite tests

This commit is contained in:
kaleb-himes
2018-10-17 15:20:39 -06:00
parent dcb105deff
commit dc519e6a45

View File

@ -172,7 +172,7 @@ static int IsValidCert(const char* line)
begin = XSTRSTR(line, "-c ");
if (begin == NULL)
return 0;
return 1;
begin += 3;
for (i = 0; i < sizeof(cert) - 1 && *begin != ' ' && *begin != '\0'; i++)