mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 10:47:28 +02:00
When no cert specified using default, do not return failure in suite tests
This commit is contained in:
@ -172,7 +172,7 @@ static int IsValidCert(const char* line)
|
|||||||
|
|
||||||
begin = XSTRSTR(line, "-c ");
|
begin = XSTRSTR(line, "-c ");
|
||||||
if (begin == NULL)
|
if (begin == NULL)
|
||||||
return 0;
|
return 1;
|
||||||
|
|
||||||
begin += 3;
|
begin += 3;
|
||||||
for (i = 0; i < sizeof(cert) - 1 && *begin != ' ' && *begin != '\0'; i++)
|
for (i = 0; i < sizeof(cert) - 1 && *begin != ' ' && *begin != '\0'; i++)
|
||||||
|
Reference in New Issue
Block a user