Remove redundant preprocessor guard

Cleanup clang-tidy readability-redundant-preprocessor finding.
pull/1002/head
John Safranek 2026-06-04 13:36:25 -07:00
parent 863a52be63
commit 534500d66b
1 changed files with 0 additions and 2 deletions

View File

@ -7563,7 +7563,6 @@ static int DoUserAuthRequestRsaCert(WOLFSSH* ssh, WS_UserAuthData_PublicKey* pk,
publicKeyTypeSz) == 0) {
sigTypeOk = 1;
}
#ifdef WOLFSSH_CERTS
else if (publicKeyType != NULL
&& pk->publicKeyTypeSz == 14
&& WMEMCMP(pk->publicKeyType,
@ -7581,7 +7580,6 @@ static int DoUserAuthRequestRsaCert(WOLFSSH* ssh, WS_UserAuthData_PublicKey* pk,
sigTypeOk = 1;
}
}
#endif
if (!sigTypeOk) {
WLOG(WS_LOG_DEBUG,
"Signature's type does not match public key type");