Add braces around new debug message to avoid compiler warning.

pull/2980/head
David Garske 2020-06-18 12:12:28 -07:00
parent 667d9ca896
commit 823b3d90d8
1 changed files with 2 additions and 1 deletions

View File

@ -9354,8 +9354,9 @@ int ParseCertRelative(DecodedCert* cert, int type, int verify, void* cm)
cert->ca = GetCA(cm, cert->issuerHash);
#endif /* !NO_SKID */
if (cert->ca)
if (cert->ca) {
WOLFSSL_MSG("CA found");
}
}
if (cert->selfSigned) {