diff options
author | Pauli <pauli@openssl.org> | 2022-01-17 10:36:06 +1100 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2022-01-18 15:10:38 +1100 |
commit | 1e3317278e4890e812a032b39c7c9dc43ca01458 (patch) | |
tree | 8a1d4b7ae8f8144ffb6c7134f9f8263c24bd4ee7 /ssl/t1_lib.c | |
parent | f242ce9817157817b19ccb303fd436fe487539b3 (diff) | |
download | openssl-new-1e3317278e4890e812a032b39c7c9dc43ca01458.tar.gz |
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)
Diffstat (limited to 'ssl/t1_lib.c')
-rw-r--r-- | ssl/t1_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c index 88912be23c..ad248c4cdf 100644 --- a/ssl/t1_lib.c +++ b/ssl/t1_lib.c @@ -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; } |