]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Remove extra space.
authorOtto Hollmann <otto@hollmann.cz>
Tue, 20 Oct 2020 10:47:55 +0000 (12:47 +0200)
committerTomas Mraz <tmraz@fedoraproject.org>
Thu, 7 Jan 2021 16:38:56 +0000 (17:38 +0100)
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/12100)

ssl/ssl_ciph.c

index ad287e6fdf118377b49fd36e8a8775e267555c22..6c77cd3d40911dd367a73e294be78d287fbed385 100644 (file)
@@ -1318,7 +1318,7 @@ static __owur int set_ciphersuites(STACK_OF(SSL_CIPHER) **currciphers, const cha
     /* Parse the list. We explicitly allow an empty list */
     if (*str != '\0'
             && (CONF_parse_list(str, ':', 1, ciphersuite_cb, newciphers) <= 0
-                || sk_SSL_CIPHER_num(newciphers) == 0 )) {
+                || sk_SSL_CIPHER_num(newciphers) == 0)) {
         ERR_raise(ERR_LIB_SSL, SSL_R_NO_CIPHER_MATCH);
         sk_SSL_CIPHER_free(newciphers);
         return 0;