diff options
author | Otto Hollmann <otto@hollmann.cz> | 2020-10-20 12:47:55 +0200 |
---|---|---|
committer | Tomas Mraz <tmraz@fedoraproject.org> | 2021-01-07 17:38:56 +0100 |
commit | 3d0b6494d5a973d516e0944bc02b22385fca318a (patch) | |
tree | 73185b1c93536bd7dc069ab88394c54fb0ef8947 /ssl | |
parent | Fixed error and return code. (diff) | |
download | openssl-3d0b6494d5a973d516e0944bc02b22385fca318a.tar.xz openssl-3d0b6494d5a973d516e0944bc02b22385fca318a.zip |
Remove extra space.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/12100)
Diffstat (limited to 'ssl')
-rw-r--r-- | ssl/ssl_ciph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssl_ciph.c b/ssl/ssl_ciph.c index ad287e6fdf..6c77cd3d40 100644 --- a/ssl/ssl_ciph.c +++ b/ssl/ssl_ciph.c @@ -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; |