ssl: replace ;; with ; as statement separator

Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/17528)
This commit is contained in:
Pauli 2022-01-17 10:36:06 +11:00
parent f242ce9817
commit 1e3317278e
3 changed files with 3 additions and 3 deletions

View File

@ -573,7 +573,7 @@ static int serverinfo_find_extension(const unsigned char *serverinfo,
if (type == extension_type) {
*extension_data = PACKET_data(&data);
*extension_length = PACKET_remaining(&data);;
*extension_length = PACKET_remaining(&data);
return 1; /* Success */
}
}

View File

@ -2299,7 +2299,7 @@ int parse_ca_names(SSL *s, PACKET *pkt)
const STACK_OF(X509_NAME) *get_ca_names(SSL *s)
{
const STACK_OF(X509_NAME) *ca_sk = NULL;;
const STACK_OF(X509_NAME) *ca_sk = NULL;
if (s->server) {
ca_sk = SSL_get_client_CA_list(s);

View File

@ -982,7 +982,7 @@ static int tls1_check_cert_param(SSL *s, X509 *x, int check_ee_md)
return 0; /* Should never happen */
for (i = 0; i < s->shared_sigalgslen; i++) {
if (check_md == s->shared_sigalgs[i]->sigandhash)
return 1;;
return 1;
}
return 0;
}